blob: 8fd27d92c5b69bab99bac917d1c22254ce9a1f52 [file] [log] [blame]
drhb19a2bc2001-09-16 00:13:26 +00001# 2001 September 15
drh62c68192000-05-30 00:51:26 +00002#
drhb19a2bc2001-09-16 00:13:26 +00003# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
drh62c68192000-05-30 00:51:26 +00005#
drhb19a2bc2001-09-16 00:13:26 +00006# 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.
drh62c68192000-05-30 00:51:26 +00009#
10#***********************************************************************
11# This file implements regression tests for SQLite library. The
12# focus of this file is testing the DELETE FROM statement.
13#
drh1bee3d72001-10-15 00:44:35 +000014# $Id: delete.test,v 1.10 2001/10/15 00:44:36 drh Exp $
drh62c68192000-05-30 00:51:26 +000015
16set testdir [file dirname $argv0]
17source $testdir/tester.tcl
18
19# Try to delete from a non-existant table.
20#
21do_test delete-1.1 {
22 set v [catch {execsql {DELETE FROM test1}} msg]
23 lappend v $msg
24} {1 {no such table: test1}}
25
26# Try to delete from sqlite_master
27#
28do_test delete-2.1 {
29 set v [catch {execsql {DELETE FROM sqlite_master}} msg]
30 lappend v $msg
drh1d37e282000-05-30 03:12:21 +000031} {1 {table sqlite_master may not be modified}}
drh62c68192000-05-30 00:51:26 +000032
drh7020f652000-06-03 18:06:52 +000033# Delete selected entries from a table with and without an index.
34#
drh1bee3d72001-10-15 00:44:35 +000035do_test delete-3.1.1 {
drh7020f652000-06-03 18:06:52 +000036 execsql {CREATE TABLE table1(f1 int, f2 int)}
37 execsql {INSERT INTO table1 VALUES(1,2)}
38 execsql {INSERT INTO table1 VALUES(2,4)}
39 execsql {INSERT INTO table1 VALUES(3,8)}
40 execsql {INSERT INTO table1 VALUES(4,16)}
41 execsql {SELECT * FROM table1 ORDER BY f1}
42} {1 2 2 4 3 8 4 16}
drh1bee3d72001-10-15 00:44:35 +000043do_test delete-3.1.2 {
drh7020f652000-06-03 18:06:52 +000044 execsql {DELETE FROM table1 WHERE f1=3}
drh1bee3d72001-10-15 00:44:35 +000045} {}
46do_test delete-3.1.3 {
drh7020f652000-06-03 18:06:52 +000047 execsql {SELECT * FROM table1 ORDER BY f1}
48} {1 2 2 4 4 16}
drh1bee3d72001-10-15 00:44:35 +000049do_test delete-3.1.4 {
drh7020f652000-06-03 18:06:52 +000050 execsql {CREATE INDEX index1 ON table1(f1)}
drh1bee3d72001-10-15 00:44:35 +000051 execsql {PRAGMA count_changes=on}
drh4cfa7932000-06-08 15:10:46 +000052 execsql {DELETE FROM 'table1' WHERE f1=3}
drh1bee3d72001-10-15 00:44:35 +000053} {0}
54do_test delete-3.1.5 {
drh7020f652000-06-03 18:06:52 +000055 execsql {SELECT * FROM table1 ORDER BY f1}
56} {1 2 2 4 4 16}
drh1bee3d72001-10-15 00:44:35 +000057do_test delete-3.1.6 {
drh7020f652000-06-03 18:06:52 +000058 execsql {DELETE FROM table1 WHERE f1=2}
drh1bee3d72001-10-15 00:44:35 +000059} {1}
60do_test delete-3.1.7 {
drh7020f652000-06-03 18:06:52 +000061 execsql {SELECT * FROM table1 ORDER BY f1}
62} {1 2 4 16}
drh62c68192000-05-30 00:51:26 +000063
drh8be51132000-06-03 19:19:41 +000064# Semantic errors in the WHERE clause
65#
66do_test delete-4.1 {
67 execsql {CREATE TABLE table2(f1 int, f2 int)}
68 set v [catch {execsql {DELETE FROM table2 WHERE f3=5}} msg]
69 lappend v $msg
drh967e8b72000-06-21 13:59:10 +000070} {1 {no such column: f3}}
drh8be51132000-06-03 19:19:41 +000071
72do_test delete-4.2 {
73 set v [catch {execsql {DELETE FROM table2 WHERE xyzzy(f1+4)}} msg]
74 lappend v $msg
75} {1 {no such function: xyzzy}}
drh62c68192000-05-30 00:51:26 +000076
drh3494ffe2001-03-20 12:55:13 +000077# Lots of deletes
78#
drh1bee3d72001-10-15 00:44:35 +000079do_test delete-5.1.1 {
drh3494ffe2001-03-20 12:55:13 +000080 execsql {DELETE FROM table1}
drh1bee3d72001-10-15 00:44:35 +000081} {2}
82do_test delete-5.1.2 {
drh3494ffe2001-03-20 12:55:13 +000083 execsql {SELECT count(*) FROM table1}
drh1bee3d72001-10-15 00:44:35 +000084} {0}
85do_test delete-5.2.1 {
86 execsql {BEGIN TRANSACTION}
drh3494ffe2001-03-20 12:55:13 +000087 for {set i 1} {$i<=200} {incr i} {
88 execsql "INSERT INTO table1 VALUES($i,[expr {$i*$i}])"
89 }
drh1bee3d72001-10-15 00:44:35 +000090 execsql {COMMIT}
91 execsql {SELECT count(*) FROM table1}
92} {200}
93do_test delete-5.2.2 {
94 execsql {DELETE FROM table1}
95} {200}
96do_test delete-5.2.3 {
97 execsql {BEGIN TRANSACTION}
98 for {set i 1} {$i<=200} {incr i} {
99 execsql "INSERT INTO table1 VALUES($i,[expr {$i*$i}])"
100 }
101 execsql {COMMIT}
102 execsql {SELECT count(*) FROM table1}
103} {200}
104do_test delete-5.2.4 {
105 execsql {PRAGMA count_changes=off}
106 execsql {DELETE FROM table1}
107} {}
108do_test delete-5.2.5 {
109 execsql {SELECT count(*) FROM table1}
110} {0}
111do_test delete-5.2.6 {
112 execsql {BEGIN TRANSACTION}
113 for {set i 1} {$i<=200} {incr i} {
114 execsql "INSERT INTO table1 VALUES($i,[expr {$i*$i}])"
115 }
116 execsql {COMMIT}
drh3494ffe2001-03-20 12:55:13 +0000117 execsql {SELECT count(*) FROM table1}
118} {200}
119do_test delete-5.3 {
120 for {set i 1} {$i<=200} {incr i 4} {
121 execsql "DELETE FROM table1 WHERE f1==$i"
122 }
123 execsql {SELECT count(*) FROM table1}
124} {150}
125do_test delete-5.4 {
126 execsql "DELETE FROM table1 WHERE f1>50"
127 execsql {SELECT count(*) FROM table1}
128} {37}
129do_test delete-5.5 {
130 for {set i 1} {$i<=70} {incr i 3} {
131 execsql "DELETE FROM table1 WHERE f1==$i"
132 }
133 execsql {SELECT f1 FROM table1 ORDER BY f1}
134} {2 3 6 8 11 12 14 15 18 20 23 24 26 27 30 32 35 36 38 39 42 44 47 48 50}
135do_test delete-5.6 {
136 for {set i 1} {$i<40} {incr i} {
137 execsql "DELETE FROM table1 WHERE f1==$i"
138 }
139 execsql {SELECT f1 FROM table1 ORDER BY f1}
140} {42 44 47 48 50}
141do_test delete-5.7 {
142 execsql "DELETE FROM table1 WHERE f1!=48"
143 execsql {SELECT f1 FROM table1 ORDER BY f1}
144} {48}
145
drh0353ced2001-03-20 22:05:00 +0000146# Delete large quantities of data. We want to test the List overflow
147# mechanism in the vdbe.
148#
149do_test delete-6.1 {
150 set fd [open data1.txt w]
151 for {set i 1} {$i<=3000} {incr i} {
152 puts $fd "[expr {$i}]\t[expr {$i*$i}]"
153 }
154 close $fd
155 execsql {DELETE FROM table1}
156 execsql {COPY table1 FROM 'data1.txt'}
157 execsql {DELETE FROM table2}
158 execsql {COPY table2 FROM 'data1.txt'}
159 file delete data1.txt
160 execsql {SELECT count(*) FROM table1}
161} {3000}
162do_test delete-6.2 {
163 execsql {SELECT count(*) FROM table2}
164} {3000}
165do_test delete-6.3 {
166 execsql {SELECT f1 FROM table1 WHERE f1<10 ORDER BY f1}
167} {1 2 3 4 5 6 7 8 9}
168do_test delete-6.4 {
169 execsql {SELECT f1 FROM table2 WHERE f1<10 ORDER BY f1}
170} {1 2 3 4 5 6 7 8 9}
171do_test delete-6.5 {
172 execsql {DELETE FROM table1 WHERE f1>7}
173 execsql {SELECT f1 FROM table1 ORDER BY f1}
174} {1 2 3 4 5 6 7}
175do_test delete-6.6 {
176 execsql {DELETE FROM table2 WHERE f1>7}
177 execsql {SELECT f1 FROM table2 ORDER BY f1}
178} {1 2 3 4 5 6 7}
179do_test delete-6.7 {
180 execsql {DELETE FROM table1}
181 execsql {SELECT f1 FROM table1}
182} {}
183do_test delete-6.8 {
184 execsql {INSERT INTO table1 VALUES(2,3)}
185 execsql {SELECT f1 FROM table1}
186} {2}
187do_test delete-6.9 {
188 execsql {DELETE FROM table2}
189 execsql {SELECT f1 FROM table2}
190} {}
191do_test delete-6.10 {
192 execsql {INSERT INTO table2 VALUES(2,3)}
193 execsql {SELECT f1 FROM table2}
194} {2}
195
196
197
drh62c68192000-05-30 00:51:26 +0000198finish_test