diff options
author | drh <drh@noemail.net> | 2019-10-16 22:01:56 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-10-16 22:01:56 +0000 |
commit | ab45fc041389b937cf82c20bec231905105f829d (patch) | |
tree | bb49f4b3680cd8a86afe9ca2844380222200ef27 /src/sqliteInt.h | |
parent | c27ea2ae8df4207e6b2479b46904c73d7cd1775f (diff) | |
download | sqlite-ab45fc041389b937cf82c20bec231905105f829d.tar.gz sqlite-ab45fc041389b937cf82c20bec231905105f829d.zip |
INSERT with named columns for a table with generated columns.
FossilOrigin-Name: 64db39f92d68d1b9f23e48af35e16b969c38b58041fbe900066eeb3ddb291cef
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index eb815a79e..8455155ae 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1840,6 +1840,7 @@ struct Column { #define COLFLAG_SORTERREF 0x0010 /* Use sorter-refs with this column */ #define COLFLAG_VIRTUAL 0x0020 /* GENERATED ALWAYS AS ... VIRTUAL */ #define COLFLAG_STORED 0x0040 /* GENERATED ALWAYS AS ... STORED */ +#define COLFLAG_BUSY 0x0080 /* Blocks recursion on VIRTUAL columns */ #define COLFLAG_GENERATED 0x0060 /* Combo: _STORED, _VIRTUAL */ #define COLFLAG_NOINSERT 0x0062 /* Combo: _HIDDEN, _STORED, _VIRTUAL */ |