e840972fcf
FossilOrigin-Name: 2e5786d10148872db47d99e39c3f54597ad777c8
122 lines
3.3 KiB
Plaintext
122 lines
3.3 KiB
Plaintext
# Copyright (c) 1999, 2000 D. Richard Hipp
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public
|
|
# License along with this library; if not, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
#
|
|
# Author contact information:
|
|
# drh@hwaci.com
|
|
# http://www.hwaci.com/drh/
|
|
#
|
|
#***********************************************************************
|
|
# This file implements regression tests for SQLite library. The
|
|
# focus of this file is testing the SELECT statement.
|
|
#
|
|
# $Id: select2.test,v 1.6 2000/06/08 16:54:40 drh Exp $
|
|
|
|
set testdir [file dirname $argv0]
|
|
source $testdir/tester.tcl
|
|
|
|
# Create a table with some data
|
|
#
|
|
execsql {CREATE TABLE tbl1(f1 int, f2 int)}
|
|
set f [open ./testdata1.txt w]
|
|
for {set i 0} {$i<=30} {incr i} {
|
|
puts $f "[expr {$i%9}]\t[expr {$i%10}]"
|
|
}
|
|
close $f
|
|
execsql {COPY tbl1 FROM './testdata1.txt'}
|
|
file delete -force ./testdata1.txt
|
|
|
|
# Do a second query inside a first.
|
|
#
|
|
do_test select2-1.1 {
|
|
set sql {SELECT DISTINCT f1 FROM tbl1 ORDER BY f1}
|
|
set r {}
|
|
db eval $sql data {
|
|
set f1 $data(f1)
|
|
lappend r $f1:
|
|
set sql2 "SELECT f2 FROM tbl1 WHERE f1=$f1 ORDER BY f2"
|
|
db eval $sql2 d2 {
|
|
lappend r $d2(f2)
|
|
}
|
|
}
|
|
set r
|
|
} {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}
|
|
|
|
do_test select2-1.2 {
|
|
set sql {SELECT DISTINCT f1 FROM tbl1 WHERE f1>3 AND f1<5}
|
|
set r {}
|
|
db eval $sql data {
|
|
set f1 $data(f1)
|
|
lappend r $f1:
|
|
set sql2 "SELECT f2 FROM tbl1 WHERE f1=$f1 ORDER BY f2"
|
|
db eval $sql2 d2 {
|
|
lappend r $d2(f2)
|
|
}
|
|
}
|
|
set r
|
|
} {4: 2 3 4}
|
|
|
|
# Create a largish table
|
|
#
|
|
do_test select2-2.0 {
|
|
execsql {CREATE TABLE tbl2(f1 int, f2 int, f3 int)}
|
|
set f [open ./testdata1.txt w]
|
|
for {set i 1} {$i<=30000} {incr i} {
|
|
puts $f "$i\t[expr {$i*2}]\t[expr {$i*3}]"
|
|
}
|
|
close $f
|
|
execsql {COPY tbl2 FROM './testdata1.txt'}
|
|
file delete -force ./testdata1.txt
|
|
} {}
|
|
|
|
do_test select2-2.1 {
|
|
execsql {SELECT count(*) FROM tbl2}
|
|
} {30000}
|
|
do_test select2-2.2 {
|
|
execsql {SELECT count(*) FROM tbl2 WHERE f2>1000}
|
|
} {29500}
|
|
|
|
do_test select2-3.1 {
|
|
execsql {SELECT f1 FROM tbl2 WHERE 1000=f2}
|
|
} {500}
|
|
|
|
do_test select2-3.2a {
|
|
execsql {CREATE INDEX idx1 ON tbl2(f2)}
|
|
} {}
|
|
|
|
do_test select2-3.2b {
|
|
execsql {SELECT f1 FROM tbl2 WHERE 1000=f2}
|
|
} {500}
|
|
do_test select2-3.2c {
|
|
execsql {SELECT f1 FROM tbl2 WHERE f2=1000}
|
|
} {500}
|
|
do_test select2-3.2d {
|
|
set t1 [lindex [time {execsql {SELECT f1 FROM tbl2 WHERE 1000=f2}} 1] 0]
|
|
set t2 [lindex [time {execsql {SELECT f1 FROM tbl2 WHERE f2=1000}} 1] 0]
|
|
expr {$t1*0.9<$t2 && $t2*0.9<$t1}
|
|
} {1}
|
|
|
|
# Make sure queries run faster with an index than without
|
|
#
|
|
do_test select2-3.3 {
|
|
set t1 [lindex [time {execsql {SELECT f1 from tbl2 WHERE f2==2000}} 1] 0]
|
|
execsql {DROP INDEX idx1}
|
|
set t2 [lindex [time {execsql {SELECT f1 FROM tbl2 WHERE f2==2000}} 1] 0]
|
|
expr {$t1*25 < $t2}
|
|
} {1}
|
|
|
|
finish_test
|