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 descending indices.
14 # $Id: descidx2.test,v 1.5 2008/03/19 00:21:31 drh Exp $
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
20 db eval {PRAGMA legacy_file_format=OFF}
22 # This procedure sets the value of the file-format in file 'test.db'
23 # to $newval. Also, the schema cookie is incremented.
25 proc set_file_format {newval} {
26 hexio_write test.db 44 [hexio_render_int32 $newval]
27 set schemacookie [hexio_get_int [hexio_read test.db 40 4]]
29 hexio_write test.db 40 [hexio_render_int32 $schemacookie]
33 # This procedure returns the value of the file-format in file 'test.db'.
35 proc get_file_format {{fname test.db}} {
36 return [hexio_get_int [hexio_read $fname 44 4]]
40 # Verify that the file format starts as 4
42 do_test descidx2-1.1 {
45 CREATE INDEX i1 ON t1(b ASC);
49 do_test descidx2-1.2 {
51 CREATE INDEX i2 ON t1(a DESC);
56 # Before adding any information to the database, set the file format
57 # back to three. Then close and reopen the database. With the file
58 # format set to three, SQLite should ignore the DESC argument on the
61 do_test descidx2-2.0 {
68 # Put some information in the table and verify that the DESC
69 # on the index is ignored.
71 do_test descidx2-2.1 {
73 INSERT INTO t1 VALUES(1,1);
74 INSERT INTO t1 VALUES(2,2);
75 INSERT INTO t1 SELECT a+2, a+2 FROM t1;
76 INSERT INTO t1 SELECT a+4, a+4 FROM t1;
77 SELECT b FROM t1 WHERE a>3 AND a<7;
80 do_test descidx2-2.2 {
82 SELECT a FROM t1 WHERE b>3 AND b<7;
85 do_test descidx2-2.3 {
87 SELECT b FROM t1 WHERE a>=3 AND a<7;
90 do_test descidx2-2.4 {
92 SELECT b FROM t1 WHERE a>3 AND a<=7;
95 do_test descidx2-2.5 {
97 SELECT b FROM t1 WHERE a>=3 AND a<=7;
100 do_test descidx2-2.6 {
102 SELECT a FROM t1 WHERE b>=3 AND b<=7;
106 # This procedure executes the SQL. Then it checks to see if the OP_Sort
107 # opcode was executed. If an OP_Sort did occur, then "sort" is appended
108 # to the result. If no OP_Sort happened, then "nosort" is appended.
110 # This procedure is used to check to make sure sorting is or is not
111 # occurring as expected.
114 set ::sqlite_sort_count 0
115 set data [execsql $sql]
116 if {$::sqlite_sort_count} {set x sort} {set x nosort}
121 # Test sorting using a descending index.
123 do_test descidx2-3.1 {
124 cksort {SELECT a FROM t1 ORDER BY a}
125 } {1 2 3 4 5 6 7 8 nosort}
126 do_test descidx2-3.2 {
127 cksort {SELECT a FROM t1 ORDER BY a ASC}
128 } {1 2 3 4 5 6 7 8 nosort}
129 do_test descidx2-3.3 {
130 cksort {SELECT a FROM t1 ORDER BY a DESC}
131 } {8 7 6 5 4 3 2 1 nosort}
132 do_test descidx2-3.4 {
133 cksort {SELECT b FROM t1 ORDER BY a}
134 } {1 2 3 4 5 6 7 8 nosort}
135 do_test descidx2-3.5 {
136 cksort {SELECT b FROM t1 ORDER BY a ASC}
137 } {1 2 3 4 5 6 7 8 nosort}
138 do_test descidx2-3.6 {
139 cksort {SELECT b FROM t1 ORDER BY a DESC}
140 } {8 7 6 5 4 3 2 1 nosort}
141 do_test descidx2-3.7 {
142 cksort {SELECT a FROM t1 ORDER BY b}
143 } {1 2 3 4 5 6 7 8 nosort}
144 do_test descidx2-3.8 {
145 cksort {SELECT a FROM t1 ORDER BY b ASC}
146 } {1 2 3 4 5 6 7 8 nosort}
147 do_test descidx2-3.9 {
148 cksort {SELECT a FROM t1 ORDER BY b DESC}
149 } {8 7 6 5 4 3 2 1 nosort}
150 do_test descidx2-3.10 {
151 cksort {SELECT b FROM t1 ORDER BY b}
152 } {1 2 3 4 5 6 7 8 nosort}
153 do_test descidx2-3.11 {
154 cksort {SELECT b FROM t1 ORDER BY b ASC}
155 } {1 2 3 4 5 6 7 8 nosort}
156 do_test descidx2-3.12 {
157 cksort {SELECT b FROM t1 ORDER BY b DESC}
158 } {8 7 6 5 4 3 2 1 nosort}
160 do_test descidx2-3.21 {
161 cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a}
163 do_test descidx2-3.22 {
164 cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a ASC}
166 do_test descidx2-3.23 {
167 cksort {SELECT a FROM t1 WHERE a>3 AND a<8 ORDER BY a DESC}
169 do_test descidx2-3.24 {
170 cksort {SELECT b FROM t1 WHERE a>3 AND a<8 ORDER BY a}
172 do_test descidx2-3.25 {
173 cksort {SELECT b FROM t1 WHERE a>3 AND a<8 ORDER BY a ASC}
175 do_test descidx2-3.26 {
176 cksort {SELECT b FROM t1 WHERE a>3 AND a<8 ORDER BY a DESC}