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

Fix reading garbage value from TSConnectionError #3819

Merged
merged 1 commit into from Nov 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions tsl/src/remote/connection.c
Expand Up @@ -1846,6 +1846,8 @@ remote_connection_cancel_query(TSConnection *conn)
if (!conn)
return true;

memset(&err, 0, sizeof(TSConnectionError));

/*
* Catch exceptions so that we can ensure the status is IDLE after the
* cancel operation even in case of errors being thrown. Note that we
Expand Down