From 200a81dcb51bb5c02625a4fe6b6dabbf630a069c Mon Sep 17 00:00:00 2001 From: drh Date: Fri, 8 Aug 2008 14:19:41 +0000 Subject: Disallow the ON CONFLICT clause on CHECK constraints. The syntax used to be allowed but never worked, so this should not present compatibility problems. Other internal grammar simplifications. (CVS 5546) FossilOrigin-Name: 4cedc641ed39982ae8cbb9200aa1e2f37c878b73 --- addopcodes.awk | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'addopcodes.awk') diff --git a/addopcodes.awk b/addopcodes.awk index b806b1d96..f6f8927e2 100644 --- a/addopcodes.awk +++ b/addopcodes.awk @@ -23,10 +23,9 @@ END { printf "#define TK_%-29s %4d\n", "ILLEGAL", max+7 printf "#define TK_%-29s %4d\n", "SPACE", max+8 printf "#define TK_%-29s %4d\n", "UNCLOSED_STRING", max+9 - printf "#define TK_%-29s %4d\n", "COMMENT", max+10 - printf "#define TK_%-29s %4d\n", "FUNCTION", max+11 - printf "#define TK_%-29s %4d\n", "COLUMN", max+12 - printf "#define TK_%-29s %4d\n", "AGG_FUNCTION", max+13 - printf "#define TK_%-29s %4d\n", "AGG_COLUMN", max+14 - printf "#define TK_%-29s %4d\n", "CONST_FUNC", max+15 + printf "#define TK_%-29s %4d\n", "FUNCTION", max+10 + printf "#define TK_%-29s %4d\n", "COLUMN", max+11 + printf "#define TK_%-29s %4d\n", "AGG_FUNCTION", max+12 + printf "#define TK_%-29s %4d\n", "AGG_COLUMN", max+13 + printf "#define TK_%-29s %4d\n", "CONST_FUNC", max+14 } -- cgit v1.2.3