diff options
author | drh <drh@noemail.net> | 2015-03-09 13:07:45 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-03-09 13:07:45 +0000 |
commit | c11a172d5fff6eff2bb54f391e36112ea32fb1c1 (patch) | |
tree | d00e4adfe5c3cd7b934498f620d40a4caf0b0218 /src/sqliteInt.h | |
parent | 2f82071478261a63280dec5c954f59c3dbdf90ca (diff) | |
parent | 80314629393b0bf728465d15ec1f2428c2e9d5c9 (diff) | |
download | sqlite-c11a172d5fff6eff2bb54f391e36112ea32fb1c1.tar.gz sqlite-c11a172d5fff6eff2bb54f391e36112ea32fb1c1.zip |
Merge recent trunk enhancements into the sessions branch.
FossilOrigin-Name: 68c8937e83b770d5ec6b1855c1bde81057c11b5f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index f41a1260e..f2ab516e9 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -24,6 +24,11 @@ #include "msvc.h" /* +** Special setup for VxWorks +*/ +#include "vxworks.h" + +/* ** These #defines should enable >2GB file support on POSIX if the ** underlying operating system supports it. If the OS lacks ** large file support, or if the OS is windows, these should be no-ops. @@ -2258,7 +2263,7 @@ struct SrcList { #define WHERE_OMIT_OPEN_CLOSE 0x0010 /* Table cursors are already open */ #define WHERE_FORCE_TABLE 0x0020 /* Do not use an index-only search */ #define WHERE_ONETABLE_ONLY 0x0040 /* Only code the 1st table in pTabList */ - /* 0x0080 // not currently used */ +#define WHERE_NO_AUTOINDEX 0x0080 /* Disallow automatic indexes */ #define WHERE_GROUPBY 0x0100 /* pOrderBy is really a GROUP BY */ #define WHERE_DISTINCTBY 0x0200 /* pOrderby is really a DISTINCT clause */ #define WHERE_WANT_DISTINCT 0x0400 /* All output needs to be distinct */ |