sl@0
|
1 |
# 2007 June 26
|
sl@0
|
2 |
#
|
sl@0
|
3 |
# The author disclaims copyright to this source code. In place of
|
sl@0
|
4 |
# a legal notice, here is a blessing:
|
sl@0
|
5 |
#
|
sl@0
|
6 |
# May you do good and not evil.
|
sl@0
|
7 |
# May you find forgiveness for yourself and forgive others.
|
sl@0
|
8 |
# May you share freely, never taking more than you give.
|
sl@0
|
9 |
#
|
sl@0
|
10 |
#***********************************************************************
|
sl@0
|
11 |
# This file implements regression tests for SQLite library. The
|
sl@0
|
12 |
# focus of this file is testing the ALTER TABLE ... RENAME TO
|
sl@0
|
13 |
# command on virtual tables.
|
sl@0
|
14 |
#
|
sl@0
|
15 |
# $Id: vtab_alter.test,v 1.3 2007/12/13 21:54:11 drh Exp $
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
ifcapable !vtab {
|
sl@0
|
21 |
finish_test
|
sl@0
|
22 |
return
|
sl@0
|
23 |
}
|
sl@0
|
24 |
|
sl@0
|
25 |
# Register the echo module.
|
sl@0
|
26 |
#
|
sl@0
|
27 |
# This test uses a special feature of the echo module. If the name
|
sl@0
|
28 |
# of the virtual table is a prefix of the name of the underlying
|
sl@0
|
29 |
# real table (for example if the v-table is "tbl" and the real table
|
sl@0
|
30 |
# is "tbl_base"), then the name of the real table is modified
|
sl@0
|
31 |
# when an "ALTER TABLE ... RENAME TO" is executed on the v-table.
|
sl@0
|
32 |
# For example:
|
sl@0
|
33 |
#
|
sl@0
|
34 |
# sqlite> CREATE TABLE t1_base(a, b, c);
|
sl@0
|
35 |
# sqlite> CREATE VIRTUAL TABLE t1 USING(t1_base);
|
sl@0
|
36 |
# sqlite> ALTER TABLE t1 RENAME TO t2;
|
sl@0
|
37 |
# sqlite> SELECT tbl_name FROM sqlite_master;
|
sl@0
|
38 |
# t2_base
|
sl@0
|
39 |
# t2
|
sl@0
|
40 |
#
|
sl@0
|
41 |
register_echo_module [sqlite3_connection_pointer db]
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
# Try to rename an echo table. Make sure nothing terrible happens.
|
sl@0
|
45 |
#
|
sl@0
|
46 |
do_test vtab_alter-1.1 {
|
sl@0
|
47 |
execsql { CREATE TABLE t1(a, b VARCHAR, c INTEGER) }
|
sl@0
|
48 |
} {}
|
sl@0
|
49 |
do_test vtab_alter-1.2 {
|
sl@0
|
50 |
execsql { CREATE VIRTUAL TABLE t1echo USING echo(t1) }
|
sl@0
|
51 |
} {}
|
sl@0
|
52 |
do_test vtab_alter-1.3 {
|
sl@0
|
53 |
catchsql { SELECT * FROM t1echo }
|
sl@0
|
54 |
} {0 {}}
|
sl@0
|
55 |
do_test vtab_alter-1.4 {
|
sl@0
|
56 |
execsql { ALTER TABLE t1echo RENAME TO new }
|
sl@0
|
57 |
} {}
|
sl@0
|
58 |
do_test vtab_alter-1.5 {
|
sl@0
|
59 |
catchsql { SELECT * FROM t1echo }
|
sl@0
|
60 |
} {1 {no such table: t1echo}}
|
sl@0
|
61 |
do_test vtab_alter-1.6 {
|
sl@0
|
62 |
catchsql { SELECT * FROM new }
|
sl@0
|
63 |
} {0 {}}
|
sl@0
|
64 |
|
sl@0
|
65 |
# Try to rename an echo table that renames its base table. Make
|
sl@0
|
66 |
# sure nothing terrible happens.
|
sl@0
|
67 |
#
|
sl@0
|
68 |
do_test vtab_alter-2.1 {
|
sl@0
|
69 |
execsql {
|
sl@0
|
70 |
DROP TABLE new;
|
sl@0
|
71 |
DROP TABLE t1;
|
sl@0
|
72 |
CREATE TABLE t1_base(a, b, c);
|
sl@0
|
73 |
CREATE VIRTUAL TABLE t1 USING echo('*_base');
|
sl@0
|
74 |
}
|
sl@0
|
75 |
} {}
|
sl@0
|
76 |
do_test vtab_alter-2.2 {
|
sl@0
|
77 |
execsql {
|
sl@0
|
78 |
INSERT INTO t1_base VALUES(1, 2, 3);
|
sl@0
|
79 |
SELECT * FROM t1;
|
sl@0
|
80 |
}
|
sl@0
|
81 |
} {1 2 3}
|
sl@0
|
82 |
do_test vtab_alter-2.3 {
|
sl@0
|
83 |
execsql { ALTER TABLE t1 RENAME TO x }
|
sl@0
|
84 |
} {}
|
sl@0
|
85 |
do_test vtab_alter-2.4 {
|
sl@0
|
86 |
execsql { SELECT * FROM x; }
|
sl@0
|
87 |
} {1 2 3}
|
sl@0
|
88 |
do_test vtab_alter-2.5 {
|
sl@0
|
89 |
execsql { SELECT * FROM x_base; }
|
sl@0
|
90 |
} {1 2 3}
|
sl@0
|
91 |
|
sl@0
|
92 |
# Cause an error to occur when the echo module renames its
|
sl@0
|
93 |
# backing store table.
|
sl@0
|
94 |
#
|
sl@0
|
95 |
do_test vtab_alter-3.1 {
|
sl@0
|
96 |
execsql { CREATE TABLE y_base(a, b, c) }
|
sl@0
|
97 |
catchsql { ALTER TABLE x RENAME TO y }
|
sl@0
|
98 |
} {1 {SQL logic error or missing database}}
|
sl@0
|
99 |
do_test vtab_alter-3.2 {
|
sl@0
|
100 |
execsql { SELECT * FROM x }
|
sl@0
|
101 |
} {1 2 3}
|
sl@0
|
102 |
|
sl@0
|
103 |
finish_test
|