-
Notifications
You must be signed in to change notification settings - Fork 0
CAT 029
unurgunite edited this page Jul 11, 2026
·
3 revisions
Severity:
error| Confidence:high| Auto-fix: ❌
Warning
This rule flags real bugs, not just performance issues.
DB.open resource leak — Database connections opened with DB.open must be closed. Use the block form for automatic cleanup.
db = DB.open("sqlite3:./data.db")
rows = db.query_all("SELECT * FROM users")Tip
This rule can significantly improve performance in hot code paths.
Note
See bench results at bench/cat-029/