Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update sqlx cache in pgmq-rs #219

Merged
merged 1 commit into from
May 21, 2024
Merged

update sqlx cache in pgmq-rs #219

merged 1 commit into from
May 21, 2024

Conversation

ChuckHend
Copy link
Member

v1.2.0 of the extension changed the order of the columns returned by pgmq.list_queues(). I like the new way better, and is only an issue for the sqlx cache for the Rust client. Quick fix in this PR.

old:

 queue_name | is_partitioned | is_unlogged |          created_at           
------------+----------------+-------------+-------------------------------
 x          | f              | f           | 2024-05-21 18:53:45.589962+00

new:

 queue_name |          created_at           | is_partitioned | is_unlogged 
------------+-------------------------------+----------------+-------------
 x          | 2024-05-21 18:56:11.791476+00 | f              | f

@ChuckHend
Copy link
Member Author

related #217

Copy link
Collaborator

@v0idpwn v0idpwn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe this should be considered a breaking change from the extension (hence, a bug) and fixed in 1.2.1?

Approving in case you disagree

@ChuckHend ChuckHend merged commit b530b7a into main May 21, 2024
4 of 5 checks passed
@ChuckHend ChuckHend deleted the sqlx-cache branch May 21, 2024 19:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants