diff options
author | drh <drh@noemail.net> | 2014-10-22 19:57:16 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2014-10-22 19:57:16 +0000 |
commit | d7d71470226bcc59799713b95ad9e10f9eff63cc (patch) | |
tree | cf21a63a0d00dbf32cea20a84207e3a494f14d1d /src/test1.c | |
parent | 9f07cf7b2e43548f60bd7497dafba30856df3531 (diff) | |
download | sqlite-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/test1.c')
-rw-r--r-- | src/test1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test1.c b/src/test1.c index 85a16488b..802aa99b5 100644 --- a/src/test1.c +++ b/src/test1.c @@ -6293,7 +6293,8 @@ static int optimization_control( { "transitive", SQLITE_Transitive }, { "subquery-coroutine", SQLITE_SubqCoroutine }, { "omit-noop-join", SQLITE_OmitNoopJoin }, - { "stat3", SQLITE_Stat3 }, + { "stat3", SQLITE_Stat34 }, + { "stat4", SQLITE_Stat34 }, }; if( objc!=4 ){ |