mirror of
https://github.com/sqlite/sqlite.git
synced 2026-01-06 08:01:16 +03:00
Get generated columns working for WITHOUT ROWID tables.
FossilOrigin-Name: 9f409649ec4282a47f0a8b079b419f1922e0c24779b297f477ced168d5b7910d
This commit is contained in:
@@ -3954,9 +3954,11 @@ void sqlite3OpenMasterTable(Parse *, int);
|
||||
Index *sqlite3PrimaryKeyIndex(Table*);
|
||||
i16 sqlite3ColumnOfIndex(Index*, i16);
|
||||
#ifdef SQLITE_OMIT_GENERATED_COLUMNS
|
||||
# define sqlite3ColumnOfTable(T,X) (X) /* No-op pass-through */
|
||||
# define sqlite3ColumnOfTable(T,X) (X) /* No-op pass-through */
|
||||
# define sqlite3ColumnOfStorage(T,X) (X) /* No-op pass-through */
|
||||
#else
|
||||
i16 sqlite3ColumnOfTable(Table*, i16);
|
||||
i16 sqlite3ColumnOfStorage(Table*, i16);
|
||||
#endif
|
||||
void sqlite3StartTable(Parse*,Token*,Token*,int,int,int,int);
|
||||
#if SQLITE_ENABLE_HIDDEN_COLUMNS
|
||||
|
||||
Reference in New Issue
Block a user