Avatar for the gvozdvmozgu user
gvozdvmozgu
turso
BlogDocsChangelog

Performance History

No performance history available yetOnce you have some commits, you will be able to see the performance history of your primary branch.

Latest Results

Merge 'Add PRAGMA to require UPDATE/DELETE queries to have a WHERE clause' from Avinash Sajjanshetty Add `PRAGMA require_where` to reject DELETE/UPDATE without WHERE Adds a per-connection boolean pragma (off by default) that prevents accidental bulk modifications by rejecting DELETE and UPDATE statements that lack a WHERE clause. Also available via the alias `PRAGMA i_am_a_dummy` as an homage to MySQL. ``` PRAGMA i_am_a_dummy = ON; -- or: PRAGMA require_where = ON; DELETE FROM users; -- Error: DELETE without a WHERE clause is not allowed UPDATE users SET active = 0; -- Error: UPDATE without a WHERE clause is not allowed DELETE FROM users WHERE id = 42; -- OK UPDATE users SET active = 0 WHERE id = 68; -- OK DELETE FROM users WHERE 1=1; -- OK (syntactic check only) ``` Reviewed-by: Preston Thorpe <preston@turso.tech> Closes #5772
main
2 months ago

Latest Branches

No pull requests foundAs pull requests are created, their performance will appear here.
© 2026 CodSpeed Technology
Home Terms Privacy Docs