You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(checkpointer): clear stale cubepi_schema_version rows on upgrade
INSERT ... ON CONFLICT DO NOTHING leaves prior version rows behind
because version is the primary key. _verify_schema does
SELECT version ... LIMIT 1 and could read the stale row, triggering a
spurious CubepiSchemaMismatch on upgrade. DELETE any non-current row
before INSERT — still idempotent.
0 commit comments