b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
Build Skills Index / trigger-deploy (push) Waiting to run
CI / Deny unrelated histories (push) Has been skipped
CI / CI timing report (push) Blocked by required conditions
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / All required checks pass (push) Waiting to run
50 lines
1.6 KiB
Python
50 lines
1.6 KiB
Python
"""Shared SQLite primitives for the small per-profile / board stores.
|
|
|
|
The projects and kanban stores open WAL SQLite files with the same two
|
|
primitives — an idempotent column-add migration and an IMMEDIATE write
|
|
transaction. One definition here keeps the two stores from drifting.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import contextlib
|
|
import sqlite3
|
|
|
|
|
|
def add_column_if_missing(conn: sqlite3.Connection, table: str, column: str, ddl: str) -> bool:
|
|
"""``ALTER TABLE <table> ADD COLUMN <ddl>``, idempotent across races.
|
|
|
|
Returns ``True`` when this call added the column. Swallows the
|
|
``duplicate column name`` error a concurrent migrator may have run first
|
|
(issue #21708). ``column`` is the human-readable name for the call site;
|
|
``ddl`` carries the actual definition.
|
|
"""
|
|
try:
|
|
conn.execute(f"ALTER TABLE {table} ADD COLUMN {ddl}")
|
|
return True
|
|
except sqlite3.OperationalError as exc:
|
|
if "duplicate column name" in str(exc).lower():
|
|
return False
|
|
raise
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def write_txn(conn: sqlite3.Connection):
|
|
"""An IMMEDIATE write transaction: at most one concurrent writer wins.
|
|
|
|
The explicit ROLLBACK is guarded so a SQLite auto-rollback (no active
|
|
transaction left under EIO / lock contention / corruption) cannot shadow
|
|
the original exception with a spurious rollback error.
|
|
"""
|
|
conn.execute("BEGIN IMMEDIATE")
|
|
try:
|
|
yield conn
|
|
except Exception:
|
|
try:
|
|
conn.execute("ROLLBACK")
|
|
except sqlite3.OperationalError:
|
|
pass
|
|
raise
|
|
else:
|
|
conn.execute("COMMIT")
|