aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2024-02-16 12:57:04 +0000
committerdrh <>2024-02-16 12:57:04 +0000
commit9d00aba8959abc5ea57360d43e8160fb6136c663 (patch)
treef2516f68dde54d6dbe57885563d8d0431396cb4b /src/sqliteInt.h
parent5e5831a760e066318f0a63e0665dae7aa39afe6c (diff)
downloadsqlite-9d00aba8959abc5ea57360d43e8160fb6136c663.tar.gz
sqlite-9d00aba8959abc5ea57360d43e8160fb6136c663.zip
Rename the TF_StatsUsed flag to TF_MaybeReanalyze, to more accurately
reflect its usage. No logic changes. FossilOrigin-Name: b4790da5e0d6f0f617e6c3a17fc2606842e41cab14339392abd335410fec0aa3
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 9d9657f3c..1c1055f42 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2476,8 +2476,7 @@ struct Table {
#define TF_HasStored 0x00000040 /* Has one or more STORED columns */
#define TF_HasGenerated 0x00000060 /* Combo: HasVirtual + HasStored */
#define TF_WithoutRowid 0x00000080 /* No rowid. PRIMARY KEY is the key */
-#define TF_StatsUsed 0x00000100 /* Query planner decisions affected by
- ** Index.aiRowLogEst[] values */
+#define TF_MaybeReanalyze 0x00000100 /* Maybe run ANALYZE on this table */
#define TF_NoVisibleRowid 0x00000200 /* No user-visible "rowid" column */
#define TF_OOOHidden 0x00000400 /* Out-of-Order hidden columns */
#define TF_HasNotNull 0x00000800 /* Contains NOT NULL constraints */