From: danielk1977 Date: Tue, 23 Nov 2004 12:24:13 +0000 (+0000) Subject: Include the 'FOR' keyword in builds that include cursors but not triggers. (CVS 2147) X-Git-Tag: version-3.6.10~4005 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78583d24405e9c58290f4c5308d718a0986a9f85;p=thirdparty%2Fsqlite.git Include the 'FOR' keyword in builds that include cursors but not triggers. (CVS 2147) FossilOrigin-Name: 3053d82d7192ff77ff5f1fee143d784d5d51772a --- diff --git a/manifest b/manifest index 6b86070a72..56c74566b1 100644 --- 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 diff --git a/manifest.uuid b/manifest.uuid index d91ebcf69f..2bc9126b5d 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -ff20c623c64d67b19c13c4fd3afe8ea137bb8a0b \ No newline at end of file +3053d82d7192ff77ff5f1fee143d784d5d51772a \ No newline at end of file diff --git a/tool/mkkeywordhash.c b/tool/mkkeywordhash.c index 16601be467..b1005c41ca 100644 --- a/tool/mkkeywordhash.c +++ b/tool/mkkeywordhash.c @@ -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 },