From: dan Date: Wed, 5 Mar 2014 17:29:34 +0000 (+0000) Subject: Add SQLITE_OMIT_CTE to the list of compile options that might be returned by "PRAGMA... X-Git-Tag: version-3.8.4~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=03af2168db869a779d89001f141e6e1d68cda695;p=thirdparty%2Fsqlite.git Add SQLITE_OMIT_CTE to the list of compile options that might be returned by "PRAGMA compile_options". FossilOrigin-Name: f33f2b3f924347e3da26741d153749330cb645ec --- diff --git a/manifest b/manifest index 324e9afc4e..5674527ca1 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Add\stests\sto\sjoin.test\sto\sverify\sthat\sit\sis\snot\spossible\sto\suse\smore\sthan\s64\stables\sin\sa\sjoin. -D 2014-03-05T16:15:07.836 +C Add\sSQLITE_OMIT_CTE\sto\sthe\slist\sof\scompile\soptions\sthat\smight\sbe\sreturned\sby\s"PRAGMA\scompile_options". +D 2014-03-05T17:29:34.044 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in 2ef13430cd359f7b361bb863504e227b25cc7f81 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -169,7 +169,7 @@ F src/btreeInt.h 0be66063468a520e4d66b80c7a1dc26d04ee6ea4 F src/build.c 04acd702f9c3ffd6670cf50be89d3561cb886fe6 F src/callback.c 174e3c8656bc29f91d710ab61550d16eea34be98 F src/complete.c dc1d136c0feee03c2f7550bafc0d29075e36deac -F src/ctime.c 77779efbe78dd678d84bfb4fc2e87b6b6ad8dccd +F src/ctime.c 0231df905e2c4abba4483ee18ffc05adc321df2a F src/date.c 593c744b2623971e45affd0bde347631bdfa4625 F src/delete.c cdd57149543bb28304d8f717c243f2a86b1fc280 F src/expr.c 014b8087a15c4c314bdd798cb1cb0b32693f8b40 @@ -1155,7 +1155,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff -P eee2a13f2caa48b7b8a693680edc2bbc9275292c -R e372b7c4ce133454234e558c8bea46b7 +P ef1a998625e1fc051732228844388d6c59665382 +R 466a7e3f69162573de9bfcfa517638a1 U dan -Z bf5a892fb8860fb651f9bf5f3493984f +Z 7d97bf825e792d4219e6e7e5c97b5b1b diff --git a/manifest.uuid b/manifest.uuid index 5b0b84a8d1..9df8f288b0 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -ef1a998625e1fc051732228844388d6c59665382 \ No newline at end of file +f33f2b3f924347e3da26741d153749330cb645ec \ No newline at end of file diff --git a/src/ctime.c b/src/ctime.c index c863cbed50..286f66e061 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -215,6 +215,9 @@ static const char * const azCompileOpt[] = { #ifdef SQLITE_OMIT_COMPOUND_SELECT "OMIT_COMPOUND_SELECT", #endif +#ifdef SQLITE_OMIT_CTE + "OMIT_CTE", +#endif #ifdef SQLITE_OMIT_DATETIME_FUNCS "OMIT_DATETIME_FUNCS", #endif