diff options
author | drh <> | 2022-12-06 15:24:05 +0000 |
---|---|---|
committer | drh <> | 2022-12-06 15:24:05 +0000 |
commit | ad9ff1d5f2db2c90271a07fc6e3c6a3d650094b3 (patch) | |
tree | 33866e6a9c97d2b2313df44d0a0c19b611cfa3b0 /src/sqliteInt.h | |
parent | d84f185f9796e82b48a6c18e12b5dce05186ffd1 (diff) | |
download | sqlite-ad9ff1d5f2db2c90271a07fc6e3c6a3d650094b3.tar.gz sqlite-ad9ff1d5f2db2c90271a07fc6e3c6a3d650094b3.zip |
Simplified experimental changes to promote the use of co-routines. Less
cruft than the coroutines-exp1 branch, but still does not work. Checked in
as a work-in-progress.
FossilOrigin-Name: e2318a30bf6ad2aeb4c4cb29661bc24ff78eb51bf07decc4b8da1ecac0015ef0
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 5a19058bd..393237358 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1844,6 +1844,7 @@ struct sqlite3 { #define SQLITE_FlttnUnionAll 0x00800000 /* Disable the UNION ALL flattener */ /* TH3 expects this value ^^^^^^^^^^ See flatten04.test */ #define SQLITE_IndexedExpr 0x01000000 /* Pull exprs from index when able */ +#define SQLITE_Coroutines 0x02000000 /* Co-routines for subqueries */ #define SQLITE_AllOpts 0xffffffff /* All optimizations */ /* |