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

vai: do not discard closing statement errors #462

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

moio
Copy link
Contributor

@moio moio commented Jan 24, 2025

Errors in deferred CloseStmt calls are currently ignored.

This patch captures such errors and returns them (possibly joined with another error if it happened).

Part of #47825

defer func() {
cerr := i.CloseStmt(stmt)
if cerr != nil {
err = errors.Join(err, cerr)
Copy link
Contributor

Choose a reason for hiding this comment

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

Does the error message from cerr provide enough context to know that it came from this close statement call (or just allow us to troubleshoot)?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Hopefully, but that really depends on the SQLite library implementation.

I could add the statement as context if you prefer that way.

Copy link
Contributor

Choose a reason for hiding this comment

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

if it's not too much trouble yes that'd be great to have a bit more context, just in case.

@moio moio requested a review from ericpromislow January 24, 2025 13:18
Copy link
Contributor

@ericpromislow ericpromislow left a comment

Choose a reason for hiding this comment

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

Straightforward

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.

3 participants