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
Experiment: patch Doltlite to skip WITHOUT ROWID auto-conversion
Doltlite auto-converts tables with composite/TEXT primary keys to
WITHOUT ROWID, which strips the ROWID column and breaks the driver's
ORDER BY ROWID tie-breaks in info-schema reads. The auto-conversion
is a single tabOpts |= TF_WithoutRowid in src/build.c.
Sed that line to a no-op before building so composite-PK tables take
SQLite's normal rowid + unique-PK-index path, and assert at runtime
that a composite-PK test table exposes a rowid.
0 commit comments