sl@0
|
1 |
# 2005 February 14
|
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 CREATE INDEX statement.
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: index3.test,v 1.3 2008/03/19 13:03:34 drh Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
set testdir [file dirname $argv0]
|
sl@0
|
18 |
source $testdir/tester.tcl
|
sl@0
|
19 |
|
sl@0
|
20 |
# Ticket #1115. Make sure that when a UNIQUE index is created on a
|
sl@0
|
21 |
# non-unique column (or columns) that it fails and that it leaves no
|
sl@0
|
22 |
# residue behind.
|
sl@0
|
23 |
#
|
sl@0
|
24 |
do_test index3-1.1 {
|
sl@0
|
25 |
execsql {
|
sl@0
|
26 |
CREATE TABLE t1(a);
|
sl@0
|
27 |
INSERT INTO t1 VALUES(1);
|
sl@0
|
28 |
INSERT INTO t1 VALUES(1);
|
sl@0
|
29 |
SELECT * FROM t1;
|
sl@0
|
30 |
}
|
sl@0
|
31 |
} {1 1}
|
sl@0
|
32 |
do_test index3-1.2 {
|
sl@0
|
33 |
catchsql {
|
sl@0
|
34 |
BEGIN;
|
sl@0
|
35 |
CREATE UNIQUE INDEX i1 ON t1(a);
|
sl@0
|
36 |
}
|
sl@0
|
37 |
} {1 {indexed columns are not unique}}
|
sl@0
|
38 |
do_test index3-1.3 {
|
sl@0
|
39 |
catchsql COMMIT;
|
sl@0
|
40 |
} {0 {}}
|
sl@0
|
41 |
integrity_check index3-1.4
|
sl@0
|
42 |
|
sl@0
|
43 |
# This test corrupts the database file so it must be the last test
|
sl@0
|
44 |
# in the series.
|
sl@0
|
45 |
#
|
sl@0
|
46 |
do_test index3-99.1 {
|
sl@0
|
47 |
execsql {
|
sl@0
|
48 |
PRAGMA writable_schema=on;
|
sl@0
|
49 |
UPDATE sqlite_master SET sql='nonsense';
|
sl@0
|
50 |
}
|
sl@0
|
51 |
db close
|
sl@0
|
52 |
sqlite3 db test.db
|
sl@0
|
53 |
catchsql {
|
sl@0
|
54 |
DROP INDEX i1;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
} {1 {malformed database schema (t1) - near "nonsense": syntax error}}
|
sl@0
|
57 |
|
sl@0
|
58 |
finish_test
|