aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2019-10-22 13:01:24 +0000
committerdrh <drh@noemail.net>2019-10-22 13:01:24 +0000
commit427b96aedf422b1a8e906e47e8852033c70939c4 (patch)
treebafbbb3a6d6bc0146d7d7829ec22d9c7eecfb9bf /src/sqliteInt.h
parent6b910364bbf531670aa0c02ad004bcdf2f5b66ad (diff)
downloadsqlite-427b96aedf422b1a8e906e47e8852033c70939c4.tar.gz
sqlite-427b96aedf422b1a8e906e47e8852033c70939c4.zip
New testcase() macros. Fix a problem with INSERT when the IPK is to the
right of generated columns. FossilOrigin-Name: 412799fc5527aaca987e4e04b8a4f774dcdb70fb80e3a126dc3a26d48a66935c
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index c9dee9e23..06464acb5 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2037,6 +2037,7 @@ struct Table {
#define TF_HasStat1 0x0010 /* nRowLogEst set from sqlite_stat1 */
#define TF_HasVirtual 0x0020 /* Has one or more VIRTUAL columns */
#define TF_HasStored 0x0040 /* Has one or more STORED columns */
+#define TF_HasGenerated 0x0060 /* Combo: HasVirtual + HasStored */
#define TF_WithoutRowid 0x0080 /* No rowid. PRIMARY KEY is the key */
#define TF_StatsUsed 0x0100 /* Query planner decisions affected by
** Index.aiRowLogEst[] values */