-
Notifications
You must be signed in to change notification settings - Fork 102
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
Ctrl+C doesn't cancel a query in psql #26
Labels
Comments
It looks like this affects both
|
It looks like a similar problem was recently fixed in postgres_fdw: postgres/postgres@f039eaa |
"I might need to write an interrupt handler for tds_fdw using dbsetinterrupt()." => that would be great :-) |
I believe @deathwish implemented this functionality in PR #336. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ctrl+C doesn't cancel a query running against tds_fdw in psql. I'm guessing any program linked with libpq will not be able to cancel a query running against tds_fdw.
I wonder if
pg_cancel_backend()
andpg_terminate_backend()
also have issues cancelling a running query?I might need to write an interrupt handler for tds_fdw using dbsetinterrupt().
The text was updated successfully, but these errors were encountered: