From: drh Date: Sun, 1 Feb 2009 00:00:45 +0000 (+0000) Subject: Make the TO keyword available even if SQLITE_OMIT_ALTERTABLE is defined. X-Git-Tag: version-3.6.15~527 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=565911e912c8a16bba22c8b2f07dd94c738a40dc;p=thirdparty%2Fsqlite.git Make the TO keyword available even if SQLITE_OMIT_ALTERTABLE is defined. Ticket #3622. (CVS 6223) FossilOrigin-Name: 3890985ca6750584876596fd0a124f47ee032075 --- diff --git a/manifest b/manifest index 9a561d8843..b941846dff 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Better\serror\smessage\swhen\scoalesce()\shas\stoo\sfew\sarguments.\s\sTicket\s#3623.\s(CVS\s6222) -D 2009-01-31T22:28:49 +C Make\sthe\sTO\skeyword\savailable\seven\sif\sSQLITE_OMIT_ALTERTABLE\sis\sdefined.\r\nTicket\s#3622.\s(CVS\s6223) +D 2009-02-01T00:00:46 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0 F Makefile.in 3871d308188cefcb7c5ab20da4c7b6aad023bc52 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654 @@ -676,7 +676,7 @@ F tool/genfkey.c e1b9c93da828db10c1109c7b4fa611aec8adc407 F tool/genfkey.test 182829596fb15785b94b2493c5f735b847d91076 F tool/lemon.c 0f65442d1c99a865525658a47ddf292f4ac2ec54 F tool/lempar.c aeba88b8566ff66f8a67c96b3eb2dd95e7d8908d -F tool/mkkeywordhash.c 1583825e96c08491c288c190a569293d3d91686f +F tool/mkkeywordhash.c 8e57fbe8c4fe2f1800f9190fd361231cb8558407 F tool/mkopts.tcl 66ac10d240cc6e86abd37dc908d50382f84ff46e x F tool/mkspeedsql.tcl a1a334d288f7adfe6e996f2e712becf076745c97 F tool/mksqlite3c.tcl bc7c626adfca5aa022454a411a62e81e7204339e @@ -693,7 +693,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e -P 407830c6839a81fa0a1010940740df3011713a88 -R c3945ec4bae662615ea149b764aed5c3 +P 9cd43c82a3c123829806aa7bf14efdd29f4424d8 +R c837b874eda97feb44e3ddcebddfe5a4 U drh -Z 5e40bffc92d9593bf4b2389c15a0c92c +Z 7f87a792868ba843d85460fd8f16ca72 diff --git a/manifest.uuid b/manifest.uuid index ac5d2e5609..1dc726e9a7 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -9cd43c82a3c123829806aa7bf14efdd29f4424d8 \ No newline at end of file +3890985ca6750584876596fd0a124f47ee032075 \ No newline at end of file diff --git a/tool/mkkeywordhash.c b/tool/mkkeywordhash.c index 6914bf00a0..62971eada2 100644 --- a/tool/mkkeywordhash.c +++ b/tool/mkkeywordhash.c @@ -15,7 +15,7 @@ static const char zHdr[] = "**\n" "** The code in this file has been automatically generated by\n" "**\n" - "** $Header: /home/drh/sqlite/trans/cvs/sqlite/sqlite/tool/mkkeywordhash.c,v 1.36 2008/12/31 21:52:41 drh Exp $\n" + "** $Header: /home/drh/sqlite/trans/cvs/sqlite/sqlite/tool/mkkeywordhash.c,v 1.37 2009/02/01 00:00:46 drh Exp $\n" "**\n" "** The code in this file implements a function that determines whether\n" "** or not a given identifier is really an SQL keyword. The same thing\n" @@ -247,7 +247,7 @@ static Keyword aKeywordTable[] = { { "TEMP", "TK_TEMP", ALWAYS }, { "TEMPORARY", "TK_TEMP", ALWAYS }, { "THEN", "TK_THEN", ALWAYS }, - { "TO", "TK_TO", ALTER }, + { "TO", "TK_TO", ALWAYS }, { "TRANSACTION", "TK_TRANSACTION", ALWAYS }, { "TRIGGER", "TK_TRIGGER", TRIGGER }, { "UNION", "TK_UNION", COMPOUND },