1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-06-15 02:42:32 +03:00

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
This commit is contained in:
drh
2008-08-08 14:19:41 +00:00
parent a33cb5f776
commit 200a81dcb5
6 changed files with 26 additions and 30 deletions

View File

@ -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
}