-
Notifications
You must be signed in to change notification settings - Fork 4.8k
sql: reject tx.unsafe()/tx.file() on a settled transaction or released reserved handle #33751
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
Open
robobun
wants to merge
5
commits into
main
Choose a base branch
from
farm/6b29641b/sql-tx-unsafe-closed-guard
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+117
−28
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e3d7cc4
sql: reject tx.unsafe()/tx.file() on a settled transaction or release…
robobun a271a5e
[autofix.ci] apply automated fixes
autofix-ci[bot] a99ad43
sql: extract cannotAcceptQueries() helper for the closed/acceptQuerie…
robobun baa774c
test: move sqlite closed-handle test to its own file
robobun 65e0e01
ci: retrigger
robobun File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| import { SQL } from "bun"; | ||
| import { expect, test } from "bun:test"; | ||
| import { tempDirWithFiles } from "harness"; | ||
| import { join } from "node:path"; | ||
|
|
||
| // tx.unsafe()/tx.file() must reject once sql.begin() has settled, the same way the | ||
| // tagged-template call and tx.savepoint() already do. Before the fix they reached the | ||
| // pooled connection the handle no longer owns and the write was durable. | ||
| test("tx.unsafe() and tx.file() reject after begin() settles", async () => { | ||
| const dir = tempDirWithFiles("sql-tx-closed", { | ||
| "q.sql": `INSERT INTO accounts VALUES (98, 0)`, | ||
| }); | ||
| const sql = new SQL("sqlite://:memory:"); | ||
| try { | ||
| await sql`CREATE TABLE accounts (id INTEGER PRIMARY KEY, balance REAL)`; | ||
| let leaked: any; | ||
| await sql.begin(async tx => { | ||
| leaked = tx; | ||
| await tx.unsafe(`INSERT INTO accounts VALUES (10, 0)`); | ||
| }); | ||
| const outcome = async (p: Promise<any>) => | ||
| p.then( | ||
| () => "fulfilled", | ||
| (e: any) => `rejected: ${e.message}`, | ||
| ); | ||
| expect({ | ||
| template: await outcome(leaked`SELECT 1`), | ||
| savepoint: await outcome(Promise.resolve().then(() => leaked.savepoint(async () => {}))), | ||
| unsafe: await outcome(leaked.unsafe(`INSERT INTO accounts VALUES (99, 0)`)), | ||
| file: await outcome(leaked.file(join(dir, "q.sql"))), | ||
| }).toEqual({ | ||
| template: "rejected: Connection closed", | ||
| savepoint: "rejected: Connection closed", | ||
| unsafe: "rejected: Connection closed", | ||
| file: "rejected: Connection closed", | ||
| }); | ||
| const rows = await sql`SELECT id FROM accounts ORDER BY id`; | ||
| expect(rows).toEqual([{ id: 10 }]); | ||
| } finally { | ||
| await sql.close(); | ||
| } | ||
| }); |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.