blob: ad95b490910da7bf04c0d407caa5248ad0ec01e2 [file] [log] [blame]
drhbc622bc2015-08-24 15:39:42 +00001# 2014-08-24
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
6# May you do good and not evil.
7# May you find forgiveness for yourself and forgive others.
8# May you share freely, never taking more than you give.
9#
10#***********************************************************************
11# This file implements regression tests for SQLite library.
12# The focus of this script is testing details of the SQL language parser.
13#
14
15set testdir [file dirname $argv0]
16source $testdir/tester.tcl
17
18do_catchsql_test parser1-1.1 {
19 CREATE TABLE t1(
20 a TEXT PRIMARY KEY,
21 b TEXT,
22 FOREIGN KEY(b COLLATE nocase DESC) REFERENCES t1(a COLLATE binary ASC)
23 );
drh108aa002015-08-24 20:21:20 +000024} {1 {syntax error after column name "b"}}
25
26
27# Verify that a legacy schema in the sqlite_master file is allowed to have
28# COLLATE, ASC, and DESC keywords on the id list of a FK constraint, and that
29# those keywords are silently ignored.
30#
drh6ab91a72018-11-07 02:17:01 +000031sqlite3_db_config db DEFENSIVE 0
drhbc622bc2015-08-24 15:39:42 +000032do_execsql_test parser1-1.2 {
33 CREATE TABLE t1(
34 a TEXT PRIMARY KEY,
35 b TEXT,
36 FOREIGN KEY(b) REFERENCES t1(a)
37 );
38 INSERT INTO t1 VALUES('abc',NULL),('xyz','abc');
39 PRAGMA writable_schema=on;
40 UPDATE sqlite_master SET sql='CREATE TABLE t1(
41 a TEXT PRIMARY KEY,
42 b TEXT,
43 FOREIGN KEY(b COLLATE nocase) REFERENCES t1(a)
44 )' WHERE name='t1';
45 SELECT name FROM sqlite_master WHERE sql LIKE '%collate%';
46} {t1}
47sqlite3 db2 test.db
48do_test parser1-1.3 {
49 sqlite3 db2 test.db
50 db2 eval {SELECT * FROM t1 ORDER BY 1}
51} {abc {} xyz abc}
drh108aa002015-08-24 20:21:20 +000052db2 close
drhbc622bc2015-08-24 15:39:42 +000053
drh108aa002015-08-24 20:21:20 +000054do_execsql_test parser1-1.4 {
55 UPDATE sqlite_master SET sql='CREATE TABLE t1(
56 a TEXT PRIMARY KEY,
57 b TEXT,
58 FOREIGN KEY(b ASC) REFERENCES t1(a)
59 )' WHERE name='t1';
60 SELECT name FROM sqlite_master WHERE sql LIKE '%ASC%';
61} {t1}
62sqlite3 db2 test.db
63do_test parser1-1.5 {
64 sqlite3 db2 test.db
65 db2 eval {SELECT * FROM t1 ORDER BY 1}
66} {abc {} xyz abc}
67db2 close
drhbc622bc2015-08-24 15:39:42 +000068
69do_catchsql_test parser1-2.1 {
70 WITH RECURSIVE
71 c(x COLLATE binary) AS (VALUES(1) UNION SELECT x+1 FROM c WHERE x<5)
72 SELECT x FROM c;
73} {1 {syntax error after column name "x"}}
74do_catchsql_test parser1-2.2 {
75 WITH RECURSIVE
76 c(x ASC) AS (VALUES(1) UNION SELECT x+1 FROM c WHERE x<5)
77 SELECT x FROM c;
78} {1 {syntax error after column name "x"}}
79
drh4aff1192016-07-28 12:52:30 +000080# Verify that the comma between multiple table constraints is
81# optional.
82#
83# The missing comma is technically a syntax error. But we have to support
84# it because there might be legacy databases that omit the commas in their
85# sqlite_master tables.
86#
87do_execsql_test parser1-3.1 {
88 CREATE TABLE t300(id INTEGER PRIMARY KEY);
89 CREATE TABLE t301(
90 id INTEGER PRIMARY KEY,
91 c1 INTEGER NOT NULL,
92 c2 INTEGER NOT NULL,
93 c3 BOOLEAN NOT NULL DEFAULT 0,
94 FOREIGN KEY(c1) REFERENCES t300(id) ON DELETE CASCADE ON UPDATE RESTRICT
95 /* no comma */
96 FOREIGN KEY(c2) REFERENCES t300(id) ON DELETE CASCADE ON UPDATE RESTRICT
97 /* no comma */
98 UNIQUE(c1, c2)
99 );
100 PRAGMA foreign_key_list(t301);
101} {0 0 t300 c2 id RESTRICT CASCADE NONE 1 0 t300 c1 id RESTRICT CASCADE NONE}
102
drhbc622bc2015-08-24 15:39:42 +0000103finish_test