diff options
author | drh <drh@noemail.net> | 2011-08-12 01:51:45 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-08-12 01:51:45 +0000 |
commit | faacf17cc1a1d6b062d63a27fca5fa5a87bf3bb9 (patch) | |
tree | 1f8b790ae295f34d4700ef6f0c2116bbdbdac402 /src/ctime.c | |
parent | 90315a24179a23538b9a906a066d484cd782e3d8 (diff) | |
download | sqlite-faacf17cc1a1d6b062d63a27fca5fa5a87bf3bb9.tar.gz sqlite-faacf17cc1a1d6b062d63a27fca5fa5a87bf3bb9.zip |
Begin a branch that experimentally replaces sqlite_stat2 with a new table
called sqlite_stat3 that will hopefully facilitate better query
planning decisions.
FossilOrigin-Name: 52e1d7e8ddd4bb5ef3a9d00fd2d719a8a784f807
Diffstat (limited to 'src/ctime.c')
-rw-r--r-- | src/ctime.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ctime.c b/src/ctime.c index a128f61a6..ad028ed2a 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -117,6 +117,9 @@ static const char * const azCompileOpt[] = { #ifdef SQLITE_ENABLE_STAT2 "ENABLE_STAT2", #endif +#ifdef SQLITE_ENABLE_STAT3 + "ENABLE_STAT3", +#endif #ifdef SQLITE_ENABLE_UNLOCK_NOTIFY "ENABLE_UNLOCK_NOTIFY", #endif |