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

Cancel only active query after failing transaction #431

Merged
merged 1 commit into from Feb 14, 2022

Conversation

larskanis
Copy link
Collaborator

This avoids sending a cancel request if there is no active query running.

In case of a failing SQL statement, the transaction_status is PQTRANS_INERROR. The previous code sent a cancel request in this case although the query is known to be aborted.

In case of ruby code that raised an error, the transaction_status is PQTRANS_INTRANS. Also in this case there is no use of sending a cancel request.

The cancellation of queries in case of exceptions was introduced by #391 . Now we cancel more conservative, only in case of a running query.

The cancellation can cause issues with pgbouncer, which releases a connection after a SQL error was raised.
It then dispatched the cancel to the next SQL command. This change should solve this incompatibility.

Fixes #430

This avoids sending a cancel request if there is no active query running.

In case of a failing SQL statement, the transaction_status is PQTRANS_INERROR.
The previous code sent a cancel request in this case although the query is known to be aborted.

In case of ruby code that raised an error, the transaction_status is PQTRANS_INTRANS.
Also in this case there is no use of sending a cancel request.

The cancellation of queries in case of exceptions was introduced by ged#391 .
Now we cancel more conservative, only in case of a running query.

The cancellation can cause issues with pgbouncer, which releases a connection after a SQL error was raised.
It then dispatched the cancel to the next SQL command.
This change should solve this incompatibility.

Fixes ged#430
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.

Cancel before rollback may cause wrong transaction to be canceled with pgbouncer
1 participant