1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Add the ability to disable the push-down optimization using the 0x1000 bit of

SQLITE_TESTCTRL_OPTIMIZATIONS.

FossilOrigin-Name: eddc35f3057e59fdc25a6911abfaa53a10cc43d8030925b65737b2f51f907421
This commit is contained in:
drh
2018-03-20 11:24:30 +00:00
parent cfd74700da
commit 2d277bb5cb
4 changed files with 13 additions and 8 deletions

View File

@@ -1532,6 +1532,7 @@ struct sqlite3 {
#define SQLITE_CursorHints 0x0400 /* Add OP_CursorHint opcodes */
#define SQLITE_Stat34 0x0800 /* Use STAT3 or STAT4 data */
/* TH3 expects the Stat34 ^^^^^^ value to be 0x0800. Don't change it */
#define SQLITE_PushDown 0x1000 /* The push-down optimization */
#define SQLITE_AllOpts 0xffff /* All optimizations */
/*