First public contribution.
3 # Portions Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiaries. All rights reserved.
5 # The author disclaims copyright to this source code. In place of
6 # a legal notice, here is a blessing:
8 # May you do good and not evil.
9 # May you find forgiveness for yourself and forgive others.
10 # May you share freely, never taking more than you give.
12 #***********************************************************************
13 # This file implements regression tests for SQLite library. The
14 # focus of this file is testing the SELECT statement.
16 # $Id: select2.test,v 1.27 2008/07/12 14:52:20 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
21 # Create a table with some data
23 execsql {CREATE TABLE tbl1(f1 int, f2 int)}
25 for {set i 0} {$i<=30} {incr i} {
26 execsql "INSERT INTO tbl1 VALUES([expr {$i%9}],[expr {$i%10}])"
30 # Do a second query inside a first.
33 set sql {SELECT DISTINCT f1 FROM tbl1 ORDER BY f1}
39 set sql2 "SELECT f2 FROM tbl1 WHERE f1=$f1 ORDER BY f2"
45 } {0: 0 7 8 9 1: 0 1 8 9 2: 0 1 2 9 3: 0 1 2 3 4: 2 3 4 5: 3 4 5 6: 4 5 6 7: 5 6 7 8: 6 7 8}
48 set sql {SELECT DISTINCT f1 FROM tbl1 WHERE f1>3 AND f1<5}
53 set sql2 "SELECT f2 FROM tbl1 WHERE f1=$f1 ORDER BY f2"
62 # Create a largish table. Do this twice, once using the TCL cache and once
63 # without. Compare the performance to make sure things go faster with the
67 do_test select2-2.0.1 {
69 execsql {CREATE TABLE tbl2(f1 int, f2 int, f3 int); BEGIN;}
70 for {set i 1} {$i<=30000} {incr i} {
73 db eval {INSERT INTO tbl2 VALUES($i,$i2,$i3)}
79 puts "time with cache: $::t1"
81 catch {execsql {DROP TABLE tbl2}}
82 do_test select2-2.0.2 {
84 execsql {CREATE TABLE tbl2(f1 int, f2 int, f3 int); BEGIN;}
85 for {set i 1} {$i<=30000} {incr i} {
88 execsql "INSERT INTO tbl2 VALUES($i,$i2,$i3)"
94 puts "time without cache: $t2"
95 #Symbian OS: This is a tclsqlite3.exe test. We do not use the TCL cache.
96 if {$::tcl_platform(platform)!="symbian"} {
98 do_test select2-2.0.3 {
99 expr {[lindex $t1 0]<[lindex $t2 0]}
104 do_test select2-2.1 {
105 execsql {SELECT count(*) FROM tbl2}
107 do_test select2-2.2 {
108 execsql {SELECT count(*) FROM tbl2 WHERE f2>1000}
111 do_test select2-3.1 {
112 execsql {SELECT f1 FROM tbl2 WHERE 1000=f2}
115 do_test select2-3.2a {
116 execsql {CREATE INDEX idx1 ON tbl2(f2)}
118 do_test select2-3.2b {
119 execsql {SELECT f1 FROM tbl2 WHERE 1000=f2}
121 do_test select2-3.2c {
122 execsql {SELECT f1 FROM tbl2 WHERE f2=1000}
124 do_test select2-3.2d {
125 set sqlite_search_count 0
126 execsql {SELECT * FROM tbl2 WHERE 1000=f2}
127 set sqlite_search_count
129 do_test select2-3.2e {
130 set sqlite_search_count 0
131 execsql {SELECT * FROM tbl2 WHERE f2=1000}
132 set sqlite_search_count
135 # Make sure queries run faster with an index than without
137 do_test select2-3.3 {
138 execsql {DROP INDEX idx1}
139 set sqlite_search_count 0
140 execsql {SELECT f1 FROM tbl2 WHERE f2==2000}
141 set sqlite_search_count
144 # Make sure we can optimize functions in the WHERE clause that
145 # use fields from two or more different table. (Bug #6)
147 do_test select2-4.1 {
151 INSERT INTO aa VALUES(1);
152 INSERT INTO aa VALUES(3);
153 INSERT INTO bb VALUES(2);
154 INSERT INTO bb VALUES(4);
155 SELECT * FROM aa, bb WHERE max(a,b)>2;
158 do_test select2-4.2 {
160 INSERT INTO bb VALUES(0);
161 SELECT * FROM aa, bb WHERE b;
164 do_test select2-4.3 {
166 SELECT * FROM aa, bb WHERE NOT b;
169 do_test select2-4.4 {
171 SELECT * FROM aa, bb WHERE min(a,b);
174 do_test select2-4.5 {
176 SELECT * FROM aa, bb WHERE NOT min(a,b);
179 do_test select2-4.6 {
181 SELECT * FROM aa, bb WHERE CASE WHEN a=b-1 THEN 1 END;
184 do_test select2-4.7 {
186 SELECT * FROM aa, bb WHERE CASE WHEN a=b-1 THEN 0 ELSE 1 END;