First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # 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.
10 #*************************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this script is measuring executing speed.
14 # This is a copy of speed1.test modified to user prepared statements.
16 # $Id: speed1p.test,v 1.5 2008/07/30 13:15:46 drh Exp $
20 #sqlite3_config_scratch 29000 1
21 sqlite3_config_lookaside 2048 300
22 #sqlite3_config_pagecache 1024 11000
23 set testdir [file dirname $argv0]
24 source $testdir/tester.tcl
25 speed_trial_init speed1
27 # Set a uniform random seed
30 # The number_name procedure below converts its argment (an integer)
31 # into a string which is the English-language name for that number.
35 # puts [number_name 123] -> "one hundred twenty three"
37 set ones {zero one two three four five six seven eight nine
38 ten eleven twelve thirteen fourteen fifteen sixteen seventeen
40 set tens {{} ten twenty thirty forty fifty sixty seventy eighty ninety}
41 proc number_name {n} {
43 set txt "[number_name [expr {$n/1000}]] thousand"
44 set n [expr {$n%1000}]
49 append txt " [lindex $::ones [expr {$n/100}]] hundred"
53 append txt " [lindex $::tens [expr {$n/10}]]"
57 append txt " [lindex $::ones $n]"
59 set txt [string trim $txt]
60 if {$txt==""} {set txt zero}
64 # Create a database schema.
68 PRAGMA page_size=1024;
69 PRAGMA cache_size=500;
70 PRAGMA locking_mode=EXCLUSIVE;
71 CREATE TABLE t1(a INTEGER, b INTEGER, c TEXT);
72 CREATE TABLE t2(a INTEGER, b INTEGER, c TEXT);
73 CREATE INDEX i2a ON t2(a);
74 CREATE INDEX i2b ON t2(b);
77 SELECT name FROM sqlite_master ORDER BY 1;
82 # 50000 INSERTs on an unindexed table
85 for {set i 1} {$i<=50000} {incr i} {
86 set r [expr {int(rand()*500000)}]
87 set x [number_name $r]
91 foreach {i r x} $::list {
92 db eval {INSERT INTO t1 VALUES($i,$r,$x)}
96 speed_trial_tcl speed1p-insert1 50000 row $script
99 # 50000 INSERTs on an indexed table
102 for {set i 1} {$i<=50000} {incr i} {
103 set r [expr {int(rand()*500000)}]
104 set x [number_name $r]
105 lappend list $i $r $x
108 foreach {i r x} $::list {
109 db eval {INSERT INTO t2 VALUES($i,$r,$x)}
113 speed_trial_tcl speed1p-insert2 50000 row $script
118 # 50 SELECTs on an integer comparison. There is no index so
119 # a full table scan is required.
122 for {set i 0} {$i<50} {incr i} {
123 set lwr [expr {$i*100}]
124 set upr [expr {($i+10)*100}]
125 lappend list $lwr $upr
128 foreach {lwr upr} $::list {
129 db eval {SELECT count(*), avg(b) FROM t1 WHERE b>=$lwr AND b<$upr}
133 speed_trial_tcl speed1p-select1 [expr {50*50000}] row $script
136 # 50 SELECTs on an LIKE comparison. There is no index so a full
137 # table scan is required.
140 for {set i 0} {$i<50} {incr i} {
141 lappend list "%[number_name $i]%"
144 foreach pattern $::list {
145 db eval {SELECT count(*), avg(b) FROM t1 WHERE c LIKE $pattern}
149 speed_trial_tcl speed1p-select2 [expr {50*50000}] row $script
155 speed_trial speed1p-createidx 150000 row {
156 CREATE INDEX i1a ON t1(a);
157 CREATE INDEX i1b ON t1(b);
158 CREATE INDEX i1c ON t1(c);
162 # 5000 SELECTs on an integer comparison where the integer is
166 for {set i 0} {$i<5000} {incr i} {
167 set lwr [expr {$i*100}]
168 set upr [expr {($i+10)*100}]
169 lappend list $lwr $upr
172 foreach {lwr upr} $::list {
173 db eval {SELECT count(*), avg(b) FROM t1 WHERE b>=$lwr AND b<$upr}
177 speed_trial_tcl speed1p-select3 5000 stmt $script
180 # 100000 random SELECTs against rowid.
183 for {set i 1} {$i<=100000} {incr i} {
184 set id [expr {int(rand()*50000)+1}]
189 db eval {SELECT c FROM t1 WHERE rowid=$id}
193 speed_trial_tcl speed1p-select4 100000 row $script
196 # 100000 random SELECTs against a unique indexed column.
199 for {set i 1} {$i<=100000} {incr i} {
200 set id [expr {int(rand()*50000)+1}]
205 db eval {SELECT c FROM t1 WHERE a=$id}
209 speed_trial_tcl speed1p-select5 100000 row $script
212 # 50000 random SELECTs against an indexed column text column
214 set list [db eval {SELECT c FROM t1 ORDER BY random() LIMIT 50000}]
217 db eval {SELECT c FROM t1 WHERE c=$c}
221 speed_trial_tcl speed1p-select6 50000 row $script
226 speed_trial speed1p-vacuum 100000 row VACUUM
228 # 5000 updates of ranges where the field being compared is indexed.
231 for {set i 0} {$i<5000} {incr i} {
232 set lwr [expr {$i*2}]
233 set upr [expr {($i+1)*2}]
234 lappend list $lwr $upr
237 foreach {lwr upr} $::list {
238 db eval {UPDATE t1 SET b=b*2 WHERE a>=$lwr AND a<$upr}
242 speed_trial_tcl speed1p-update1 5000 stmt $script
245 # 50000 single-row updates. An index is used to find the row quickly.
248 for {set i 0} {$i<50000} {incr i} {
249 set r [expr {int(rand()*500000)}]
253 foreach {i r} $::list {
254 db eval {UPDATE t1 SET b=$r WHERE a=$i}
258 speed_trial_tcl speed1p-update2 50000 row $script
261 # 1 big text update that touches every row in the table.
263 speed_trial speed1p-update3 50000 row {
267 # Many individual text updates. Each row in the table is
268 # touched through an index.
271 for {set i 1} {$i<=50000} {incr i} {
272 set r [expr {int(rand()*500000)}]
273 lappend list $i [number_name $r]
276 foreach {i x} $::list {
277 db eval {UPDATE t1 SET c=$x WHERE a=$i}
281 speed_trial_tcl speed1p-update4 50000 row $script
284 # Delete all content in a table.
286 speed_trial speed1p-delete1 50000 row {DELETE FROM t1}
288 # Copy one table into another
290 speed_trial speed1p-copy1 50000 row {INSERT INTO t1 SELECT * FROM t2}
292 # Delete all content in a table, one row at a time.
294 speed_trial speed1p-delete2 50000 row {DELETE FROM t1 WHERE 1}
296 # Refill the table yet again
298 speed_trial speed1p-copy2 50000 row {INSERT INTO t1 SELECT * FROM t2}
300 # Drop the table and recreate it without its indices.
303 speed_trial speed1p-drop1 50000 row {
305 CREATE TABLE t1(a INTEGER, b INTEGER, c TEXT);
309 # Refill the table yet again. This copy should be faster because
310 # there are no indices to deal with.
312 speed_trial speed1p-copy3 50000 row {INSERT INTO t1 SELECT * FROM t2}
314 # Select 20000 rows from the table at random.
316 speed_trial speed1p-random1 50000 row {
317 SELECT rowid FROM t1 ORDER BY random() LIMIT 20000
320 # Delete 20000 random rows from the table.
322 speed_trial speed1p-random-del1 20000 row {
323 DELETE FROM t1 WHERE rowid IN
324 (SELECT rowid FROM t1 ORDER BY random() LIMIT 20000)
326 do_test speed1p-1.1 {
327 db one {SELECT count(*) FROM t1}
331 # Delete 20000 more rows at random from the table.
333 speed_trial speed1p-random-del2 20000 row {
334 DELETE FROM t1 WHERE rowid IN
335 (SELECT rowid FROM t1 ORDER BY random() LIMIT 20000)
337 do_test speed1p-1.2 {
338 db one {SELECT count(*) FROM t1}
340 speed_trial_summary speed1