drvgettable(): fix leaked SQLite statement / persistent lock when SQL_ATTR_MAX_ROWS cap is hit - #22
Open
hwmaier wants to merge 1 commit into
Open
Conversation
… is hit If a statement's row-count cap (SQL_ATTR_MAX_ROWS) is reached before the result set is exhausted, the fetch loop broke out without finalizing or resetting the active sqlite3_stmt. The very next outer- loop iteration then overwrote the only reference to it (tres.stmt = NULL), orphaning a still-open statement that keeps holding its SQLite lock for as long as the connection stays open -- blocking every other process from writing to the file, independent of any BEGIN/COMMIT or autocommit state. Route the max_rows early-exit through the same finalize-or-reset cleanup already used by the loop's normal completion path instead of skipping it, so the statement (and its lock) is released immediately when the cap is hit.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
If a statement's row-count cap (SQL_ATTR_MAX_ROWS) is reached before the result set is exhausted, the fetch loop broke out without finalizing or resetting the active sqlite3_stmt. The very next outer- loop iteration then overwrote the only reference to it (tres.stmt = NULL), orphaning a still-open statement that keeps holding its SQLite lock for as long as the connection stays open -- blocking every other process from writing to the file, independent of any BEGIN/COMMIT or autocommit state.
Route the max_rows early-exit through the same finalize-or-reset cleanup already used by the loop's normal completion path instead of skipping it, so the statement (and its lock) is released immediately when the cap is hit.
As a result of this, some applications had issues with concurrent access which this PR now fixes.
The motivation for this PR was to fix a compatibility with Altium which is discussed here:
https://stackoverflow.com/questions/45269190/sqlite-odbc-driver-and-database-locking