]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Include the 'FOR' keyword in builds that include cursors but not triggers. (CVS 2147)
authordanielk1977 <danielk1977@noemail.net>
Tue, 23 Nov 2004 12:24:13 +0000 (12:24 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Tue, 23 Nov 2004 12:24:13 +0000 (12:24 +0000)
FossilOrigin-Name: 3053d82d7192ff77ff5f1fee143d784d5d51772a

manifest
manifest.uuid
tool/mkkeywordhash.c

index 6b86070a72ac1a3ea570027a4afebfd3a82c870f..56c74566b1f510909638ac71b8f3dfdbb4203743 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Make\sthe\stest\ssuite\spass\swhen\sSQLITE_OMIT_SCHEMA_VERSION_PRAGMAS\sis\sdefined.\s(CVS\s2146)
-D 2004-11-23T11:16:42
+C Include\sthe\s'FOR'\skeyword\sin\sbuilds\sthat\sinclude\scursors\sbut\snot\striggers.\s(CVS\s2147)
+D 2004-11-23T12:24:13
 F Makefile.in 8291610f5839939a5fbff4dbbf85adb0fe1ac37f
 F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
 F README a01693e454a00cc117967e3f9fdab2d4d52e9bc1
@@ -207,7 +207,7 @@ F tool/lempar.c 1e61d2b6cb9d8affa264a13336bc0c088498caa4
 F tool/memleak.awk b744b6109566206c746d826f6ecdba34662216bc
 F tool/memleak2.awk 9cc20c8e8f3c675efac71ea0721ee6874a1566e8
 F tool/memleak3.tcl 336eb50b0849dbf99b1d5462d9c37291b01b2b43
-F tool/mkkeywordhash.c e83ab9c16c5cf217f57cb49ad09a3a1dc5209485
+F tool/mkkeywordhash.c 408dccad57ed50dc67a9a1ee7fd258e0f0a07bd2
 F tool/mkopts.tcl 66ac10d240cc6e86abd37dc908d50382f84ff46e x
 F tool/opcodeDoc.awk b3a2a3d5d3075b8bd90b7afe24283efdd586659c
 F tool/report1.txt 9eae07f26a8fc53889b45fc833a66a33daa22816
@@ -261,7 +261,7 @@ F www/tclsqlite.tcl 560ecd6a916b320e59f2917317398f3d59b7cc25
 F www/vdbe.tcl 095f106d93875c94b47367384ebc870517431618
 F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
 F www/whentouse.tcl fdacb0ba2d39831e8a6240d05a490026ad4c4e4c
-P 2d1f0b923d3c5a669959a03a4344fddcb69c7a98
-R e6a45a91de16f1427454a4e157234366
+P ff20c623c64d67b19c13c4fd3afe8ea137bb8a0b
+R 1a54f4a7a14ebb3a3e2ebffc4a746ce3
 U danielk1977
-Z c1a8c4c4c0a160c94d9225a898f1fe8d
+Z d9f7778c5acda6b87511801083905cea
index d91ebcf69fa123c21caac783aea6ae0eaef224c0..2bc9126b5de0729d1dd83da8123eca672c392bdb 100644 (file)
@@ -1 +1 @@
-ff20c623c64d67b19c13c4fd3afe8ea137bb8a0b
\ No newline at end of file
+3053d82d7192ff77ff5f1fee143d784d5d51772a
\ No newline at end of file
index 16601be4673cecf6bad99cca28890b594df4c0db..b1005c41caa6f5c73a47e81b1daf30082c22576c 100644 (file)
@@ -150,7 +150,7 @@ static Keyword aKeywordTable[] = {
   { "FAIL",             "TK_FAIL",         CONFLICT|TRIGGER       },
   { "FETCH",            "TK_FETCH",        CURSOR                 },
   { "FIRST",            "TK_FIRST",        CURSOR                 },
-  { "FOR",              "TK_FOR",          TRIGGER                },
+  { "FOR",              "TK_FOR",          TRIGGER|CURSOR         },
   { "FOREIGN",          "TK_FOREIGN",      FKEY                   },
   { "FROM",             "TK_FROM",         ALWAYS                 },
   { "FULL",             "TK_JOIN_KW",      ALWAYS                 },