-C Convert\san\salways-true\scondition\sin\shash.c\sinto\san\sassert().\s(CVS\s6624)
-D 2009-05-09T23:29:12
+C Enhance\sthe\sparser\sto\sallow\snested\sparentheses\sin\sthe\smodule\sargument\sof\na\sCREATE\sVIRTUAL\sTABLE\sstatement.\s(CVS\s6625)
+D 2009-05-11T18:22:31
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in 583e87706abc3026960ed759aff6371faf84c211
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
F src/os_win.c 725c38a524d168ce280446ad8761d731bc516405
F src/pager.c e7171336ffb0f8adc41e55b63dbb2bc5a616a1ae
F src/pager.h 73f481a308a873ccd626d97331c081db3b53e2e5
-F src/parse.y a0e8b8e5d646a6352098fccc9d3325b4234a05b9
+F src/parse.y ba2fa210be4b17001e0a16d5e73a8141939b1987
F src/pcache.c 395f752a13574120bd7513a400ba02a265aaa76d
F src/pcache.h 9b927ccc5a538e31b4c3bc7eec4f976db42a1324
F src/pcache1.c a6138ee57da3259149ca5254e0156d9b624db850
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 38df91c2edebee22d02b5f84260ee9e5e14db48e
-R 32e092e7dc953c9fbb0f589e2f5e3cb3
+P 4237299935b8bf8c346aacba021113224813bcb9
+R 1225b5a79e6cc1b94c2e3a763a216c4a
U drh
-Z 7d43c43fd9901e26747295890c55279b
+Z 956880f802a30c9fa51b8f0d5897cb04
-4237299935b8bf8c346aacba021113224813bcb9
\ No newline at end of file
+93772bd7f56a5158eb46a992ba932f4695cb219f
\ No newline at end of file
** the parser. Lemon will also generate a header file containing
** numeric codes for all of the tokens.
**
-** @(#) $Id: parse.y,v 1.275 2009/05/01 21:13:37 drh Exp $
+** @(#) $Id: parse.y,v 1.276 2009/05/11 18:22:31 drh Exp $
*/
// All token codes are small integers with #defines that begin with "TK_"
vtabargtoken ::= lp anylist RP(X). {sqlite3VtabArgExtend(pParse,&X);}
lp ::= LP(X). {sqlite3VtabArgExtend(pParse,&X);}
anylist ::= .
-anylist ::= anylist ANY(X). {sqlite3VtabArgExtend(pParse,&X);}
+anylist ::= anylist LP anylist RP.
+anylist ::= anylist ANY.
%endif SQLITE_OMIT_VIRTUALTABLE