aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2014-10-22 19:57:16 +0000
committerdrh <drh@noemail.net>2014-10-22 19:57:16 +0000
commitd7d71470226bcc59799713b95ad9e10f9eff63cc (patch)
treecf21a63a0d00dbf32cea20a84207e3a494f14d1d /src/sqliteInt.h
parent9f07cf7b2e43548f60bd7497dafba30856df3531 (diff)
downloadsqlite-d7d71470226bcc59799713b95ad9e10f9eff63cc.tar.gz
sqlite-d7d71470226bcc59799713b95ad9e10f9eff63cc.zip
Change the 0x800 bit of SQLITE_TESTCTRL_OPTIMIZATIONS so that it disables
the loading of STAT3 and STAT4 content, not just the using of that content. Change the internal name of that bit to SQLITE_Stat34. FossilOrigin-Name: ca3b00c44ec52d209642a5ba9ef82e085fac39db
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 5409f7086..1b3138be4 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -1214,7 +1214,7 @@ struct sqlite3 {
#define SQLITE_SubqCoroutine 0x0100 /* Evaluate subqueries as coroutines */
#define SQLITE_Transitive 0x0200 /* Transitive constraints */
#define SQLITE_OmitNoopJoin 0x0400 /* Omit unused tables in joins */
-#define SQLITE_Stat3 0x0800 /* Use the SQLITE_STAT3 table */
+#define SQLITE_Stat34 0x0800 /* Use STAT3 or STAT4 data */
#define SQLITE_AllOpts 0xffff /* All optimizations */
/*