drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 1 | # 2001 September 15 |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 2 | # |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 3 | # The author disclaims copyright to this source code. In place of |
| 4 | # a legal notice, here is a blessing: |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 5 | # |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 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. |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 9 | # |
| 10 | #*********************************************************************** |
| 11 | # This file implements regression tests for SQLite library. The |
| 12 | # focus of this file is testing the SELECT statement. |
| 13 | # |
drh | 33e619f | 2009-05-28 01:00:55 +0000 | [diff] [blame] | 14 | # $Id: select1.test,v 1.70 2009/05/28 01:00:56 drh Exp $ |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 15 | |
| 16 | set testdir [file dirname $argv0] |
| 17 | source $testdir/tester.tcl |
| 18 | |
| 19 | # Try to select on a non-existant table. |
| 20 | # |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 21 | do_test select1-1.1 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 22 | set v [catch {execsql {SELECT * FROM test1}} msg] |
| 23 | lappend v $msg |
| 24 | } {1 {no such table: test1}} |
| 25 | |
danielk1977 | 13a68c3 | 2005-12-15 10:11:30 +0000 | [diff] [blame] | 26 | |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 27 | execsql {CREATE TABLE test1(f1 int, f2 int)} |
| 28 | |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 29 | do_test select1-1.2 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 30 | set v [catch {execsql {SELECT * FROM test1, test2}} msg] |
| 31 | lappend v $msg |
| 32 | } {1 {no such table: test2}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 33 | do_test select1-1.3 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 34 | set v [catch {execsql {SELECT * FROM test2, test1}} msg] |
| 35 | lappend v $msg |
| 36 | } {1 {no such table: test2}} |
| 37 | |
| 38 | execsql {INSERT INTO test1(f1,f2) VALUES(11,22)} |
| 39 | |
| 40 | |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 41 | # Make sure the columns are extracted correctly. |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 42 | # |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 43 | do_test select1-1.4 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 44 | execsql {SELECT f1 FROM test1} |
| 45 | } {11} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 46 | do_test select1-1.5 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 47 | execsql {SELECT f2 FROM test1} |
| 48 | } {22} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 49 | do_test select1-1.6 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 50 | execsql {SELECT f2, f1 FROM test1} |
| 51 | } {22 11} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 52 | do_test select1-1.7 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 53 | execsql {SELECT f1, f2 FROM test1} |
| 54 | } {11 22} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 55 | do_test select1-1.8 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 56 | execsql {SELECT * FROM test1} |
| 57 | } {11 22} |
drh | 7c917d1 | 2001-12-16 20:05:05 +0000 | [diff] [blame] | 58 | do_test select1-1.8.1 { |
| 59 | execsql {SELECT *, * FROM test1} |
| 60 | } {11 22 11 22} |
| 61 | do_test select1-1.8.2 { |
| 62 | execsql {SELECT *, min(f1,f2), max(f1,f2) FROM test1} |
| 63 | } {11 22 11 22} |
| 64 | do_test select1-1.8.3 { |
| 65 | execsql {SELECT 'one', *, 'two', * FROM test1} |
| 66 | } {one 11 22 two 11 22} |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 67 | |
| 68 | execsql {CREATE TABLE test2(r1 real, r2 real)} |
| 69 | execsql {INSERT INTO test2(r1,r2) VALUES(1.1,2.2)} |
| 70 | |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 71 | do_test select1-1.9 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 72 | execsql {SELECT * FROM test1, test2} |
| 73 | } {11 22 1.1 2.2} |
drh | 7c917d1 | 2001-12-16 20:05:05 +0000 | [diff] [blame] | 74 | do_test select1-1.9.1 { |
| 75 | execsql {SELECT *, 'hi' FROM test1, test2} |
| 76 | } {11 22 1.1 2.2 hi} |
| 77 | do_test select1-1.9.2 { |
| 78 | execsql {SELECT 'one', *, 'two', * FROM test1, test2} |
| 79 | } {one 11 22 1.1 2.2 two 11 22 1.1 2.2} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 80 | do_test select1-1.10 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 81 | execsql {SELECT test1.f1, test2.r1 FROM test1, test2} |
| 82 | } {11 1.1} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 83 | do_test select1-1.11 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 84 | execsql {SELECT test1.f1, test2.r1 FROM test2, test1} |
| 85 | } {11 1.1} |
drh | 17e24df | 2001-11-06 14:10:41 +0000 | [diff] [blame] | 86 | do_test select1-1.11.1 { |
| 87 | execsql {SELECT * FROM test2, test1} |
| 88 | } {1.1 2.2 11 22} |
| 89 | do_test select1-1.11.2 { |
| 90 | execsql {SELECT * FROM test1 AS a, test1 AS b} |
| 91 | } {11 22 11 22} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 92 | do_test select1-1.12 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 93 | execsql {SELECT max(test1.f1,test2.r1), min(test1.f2,test2.r2) |
| 94 | FROM test2, test1} |
| 95 | } {11 2.2} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 96 | do_test select1-1.13 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 97 | execsql {SELECT min(test1.f1,test2.r1), max(test1.f2,test2.r2) |
| 98 | FROM test1, test2} |
| 99 | } {1.1 22} |
| 100 | |
drh | 832508b | 2002-03-02 17:04:07 +0000 | [diff] [blame] | 101 | set long {This is a string that is too big to fit inside a NBFS buffer} |
| 102 | do_test select1-2.0 { |
| 103 | execsql " |
| 104 | DROP TABLE test2; |
| 105 | DELETE FROM test1; |
| 106 | INSERT INTO test1 VALUES(11,22); |
| 107 | INSERT INTO test1 VALUES(33,44); |
| 108 | CREATE TABLE t3(a,b); |
| 109 | INSERT INTO t3 VALUES('abc',NULL); |
| 110 | INSERT INTO t3 VALUES(NULL,'xyz'); |
| 111 | INSERT INTO t3 SELECT * FROM test1; |
| 112 | CREATE TABLE t4(a,b); |
| 113 | INSERT INTO t4 VALUES(NULL,'$long'); |
| 114 | SELECT * FROM t3; |
| 115 | " |
| 116 | } {abc {} {} xyz 11 22 33 44} |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 117 | |
| 118 | # Error messges from sqliteExprCheck |
| 119 | # |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 120 | do_test select1-2.1 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 121 | set v [catch {execsql {SELECT count(f1,f2) FROM test1}} msg] |
| 122 | lappend v $msg |
drh | 89425d5 | 2002-02-28 03:04:48 +0000 | [diff] [blame] | 123 | } {1 {wrong number of arguments to function count()}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 124 | do_test select1-2.2 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 125 | set v [catch {execsql {SELECT count(f1) FROM test1}} msg] |
| 126 | lappend v $msg |
| 127 | } {0 2} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 128 | do_test select1-2.3 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 129 | set v [catch {execsql {SELECT Count() FROM test1}} msg] |
| 130 | lappend v $msg |
| 131 | } {0 2} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 132 | do_test select1-2.4 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 133 | set v [catch {execsql {SELECT COUNT(*) FROM test1}} msg] |
| 134 | lappend v $msg |
| 135 | } {0 2} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 136 | do_test select1-2.5 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 137 | set v [catch {execsql {SELECT COUNT(*)+1 FROM test1}} msg] |
| 138 | lappend v $msg |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 139 | } {0 3} |
drh | 832508b | 2002-03-02 17:04:07 +0000 | [diff] [blame] | 140 | do_test select1-2.5.1 { |
| 141 | execsql {SELECT count(*),count(a),count(b) FROM t3} |
| 142 | } {4 3 3} |
| 143 | do_test select1-2.5.2 { |
| 144 | execsql {SELECT count(*),count(a),count(b) FROM t4} |
| 145 | } {1 0 1} |
| 146 | do_test select1-2.5.3 { |
| 147 | execsql {SELECT count(*),count(a),count(b) FROM t4 WHERE b=5} |
| 148 | } {0 0 0} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 149 | do_test select1-2.6 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 150 | set v [catch {execsql {SELECT min(*) FROM test1}} msg] |
| 151 | lappend v $msg |
drh | fbc9908 | 2002-02-28 03:14:18 +0000 | [diff] [blame] | 152 | } {1 {wrong number of arguments to function min()}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 153 | do_test select1-2.7 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 154 | set v [catch {execsql {SELECT Min(f1) FROM test1}} msg] |
| 155 | lappend v $msg |
| 156 | } {0 11} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 157 | do_test select1-2.8 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 158 | set v [catch {execsql {SELECT MIN(f1,f2) FROM test1}} msg] |
| 159 | lappend v [lsort $msg] |
| 160 | } {0 {11 33}} |
drh | 832508b | 2002-03-02 17:04:07 +0000 | [diff] [blame] | 161 | do_test select1-2.8.1 { |
| 162 | execsql {SELECT coalesce(min(a),'xyzzy') FROM t3} |
drh | 9eb516c | 2004-07-18 20:52:32 +0000 | [diff] [blame] | 163 | } {11} |
drh | 832508b | 2002-03-02 17:04:07 +0000 | [diff] [blame] | 164 | do_test select1-2.8.2 { |
| 165 | execsql {SELECT min(coalesce(a,'xyzzy')) FROM t3} |
| 166 | } {11} |
| 167 | do_test select1-2.8.3 { |
| 168 | execsql {SELECT min(b), min(b) FROM t4} |
| 169 | } [list $long $long] |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 170 | do_test select1-2.9 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 171 | set v [catch {execsql {SELECT MAX(*) FROM test1}} msg] |
| 172 | lappend v $msg |
drh | fbc9908 | 2002-02-28 03:14:18 +0000 | [diff] [blame] | 173 | } {1 {wrong number of arguments to function MAX()}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 174 | do_test select1-2.10 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 175 | set v [catch {execsql {SELECT Max(f1) FROM test1}} msg] |
| 176 | lappend v $msg |
| 177 | } {0 33} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 178 | do_test select1-2.11 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 179 | set v [catch {execsql {SELECT max(f1,f2) FROM test1}} msg] |
| 180 | lappend v [lsort $msg] |
| 181 | } {0 {22 44}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 182 | do_test select1-2.12 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 183 | set v [catch {execsql {SELECT MAX(f1,f2)+1 FROM test1}} msg] |
| 184 | lappend v [lsort $msg] |
| 185 | } {0 {23 45}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 186 | do_test select1-2.13 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 187 | set v [catch {execsql {SELECT MAX(f1)+1 FROM test1}} msg] |
| 188 | lappend v $msg |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 189 | } {0 34} |
drh | 832508b | 2002-03-02 17:04:07 +0000 | [diff] [blame] | 190 | do_test select1-2.13.1 { |
| 191 | execsql {SELECT coalesce(max(a),'xyzzy') FROM t3} |
drh | 739105c | 2002-05-29 23:22:23 +0000 | [diff] [blame] | 192 | } {abc} |
drh | bb11351 | 2002-05-27 01:04:51 +0000 | [diff] [blame] | 193 | do_test select1-2.13.2 { |
drh | 832508b | 2002-03-02 17:04:07 +0000 | [diff] [blame] | 194 | execsql {SELECT max(coalesce(a,'xyzzy')) FROM t3} |
| 195 | } {xyzzy} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 196 | do_test select1-2.14 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 197 | set v [catch {execsql {SELECT SUM(*) FROM test1}} msg] |
| 198 | lappend v $msg |
drh | 89425d5 | 2002-02-28 03:04:48 +0000 | [diff] [blame] | 199 | } {1 {wrong number of arguments to function SUM()}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 200 | do_test select1-2.15 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 201 | set v [catch {execsql {SELECT Sum(f1) FROM test1}} msg] |
| 202 | lappend v $msg |
drh | 3d1d95e | 2005-09-08 10:37:01 +0000 | [diff] [blame] | 203 | } {0 44} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 204 | do_test select1-2.16 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 205 | set v [catch {execsql {SELECT sum(f1,f2) FROM test1}} msg] |
| 206 | lappend v $msg |
drh | 89425d5 | 2002-02-28 03:04:48 +0000 | [diff] [blame] | 207 | } {1 {wrong number of arguments to function sum()}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 208 | do_test select1-2.17 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 209 | set v [catch {execsql {SELECT SUM(f1)+1 FROM test1}} msg] |
| 210 | lappend v $msg |
drh | 3d1d95e | 2005-09-08 10:37:01 +0000 | [diff] [blame] | 211 | } {0 45} |
drh | 832508b | 2002-03-02 17:04:07 +0000 | [diff] [blame] | 212 | do_test select1-2.17.1 { |
| 213 | execsql {SELECT sum(a) FROM t3} |
drh | 29d7210 | 2006-02-09 22:13:41 +0000 | [diff] [blame] | 214 | } {44.0} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 215 | do_test select1-2.18 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 216 | set v [catch {execsql {SELECT XYZZY(f1) FROM test1}} msg] |
| 217 | lappend v $msg |
| 218 | } {1 {no such function: XYZZY}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 219 | do_test select1-2.19 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 220 | set v [catch {execsql {SELECT SUM(min(f1,f2)) FROM test1}} msg] |
| 221 | lappend v $msg |
drh | 3d1d95e | 2005-09-08 10:37:01 +0000 | [diff] [blame] | 222 | } {0 44} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 223 | do_test select1-2.20 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 224 | set v [catch {execsql {SELECT SUM(min(f1)) FROM test1}} msg] |
| 225 | lappend v $msg |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 226 | } {1 {misuse of aggregate function min()}} |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 227 | |
drh | 36379e9 | 2007-07-23 22:51:15 +0000 | [diff] [blame] | 228 | # Ticket #2526 |
| 229 | # |
| 230 | do_test select1-2.21 { |
| 231 | catchsql { |
| 232 | SELECT min(f1) AS m FROM test1 GROUP BY f1 HAVING max(m+5)<10 |
| 233 | } |
| 234 | } {1 {misuse of aliased aggregate m}} |
| 235 | do_test select1-2.22 { |
| 236 | catchsql { |
| 237 | SELECT coalesce(min(f1)+5,11) AS m FROM test1 |
| 238 | GROUP BY f1 |
| 239 | HAVING max(m+5)<10 |
| 240 | } |
| 241 | } {1 {misuse of aliased aggregate m}} |
| 242 | do_test select1-2.23 { |
| 243 | execsql { |
| 244 | CREATE TABLE tkt2526(a,b,c PRIMARY KEY); |
| 245 | INSERT INTO tkt2526 VALUES('x','y',NULL); |
| 246 | INSERT INTO tkt2526 VALUES('x','z',NULL); |
| 247 | } |
| 248 | catchsql { |
| 249 | SELECT count(a) AS cn FROM tkt2526 GROUP BY a HAVING cn<max(cn) |
| 250 | } |
| 251 | } {1 {misuse of aliased aggregate cn}} |
| 252 | |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 253 | # WHERE clause expressions |
| 254 | # |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 255 | do_test select1-3.1 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 256 | set v [catch {execsql {SELECT f1 FROM test1 WHERE f1<11}} msg] |
| 257 | lappend v $msg |
| 258 | } {0 {}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 259 | do_test select1-3.2 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 260 | set v [catch {execsql {SELECT f1 FROM test1 WHERE f1<=11}} msg] |
| 261 | lappend v $msg |
| 262 | } {0 11} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 263 | do_test select1-3.3 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 264 | set v [catch {execsql {SELECT f1 FROM test1 WHERE f1=11}} msg] |
| 265 | lappend v $msg |
| 266 | } {0 11} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 267 | do_test select1-3.4 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 268 | set v [catch {execsql {SELECT f1 FROM test1 WHERE f1>=11}} msg] |
| 269 | lappend v [lsort $msg] |
| 270 | } {0 {11 33}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 271 | do_test select1-3.5 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 272 | set v [catch {execsql {SELECT f1 FROM test1 WHERE f1>11}} msg] |
| 273 | lappend v [lsort $msg] |
| 274 | } {0 33} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 275 | do_test select1-3.6 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 276 | set v [catch {execsql {SELECT f1 FROM test1 WHERE f1!=11}} msg] |
| 277 | lappend v [lsort $msg] |
| 278 | } {0 33} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 279 | do_test select1-3.7 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 280 | set v [catch {execsql {SELECT f1 FROM test1 WHERE min(f1,f2)!=11}} msg] |
| 281 | lappend v [lsort $msg] |
| 282 | } {0 33} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 283 | do_test select1-3.8 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 284 | set v [catch {execsql {SELECT f1 FROM test1 WHERE max(f1,f2)!=11}} msg] |
| 285 | lappend v [lsort $msg] |
| 286 | } {0 {11 33}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 287 | do_test select1-3.9 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 288 | set v [catch {execsql {SELECT f1 FROM test1 WHERE count(f1,f2)!=11}} msg] |
| 289 | lappend v $msg |
drh | 89425d5 | 2002-02-28 03:04:48 +0000 | [diff] [blame] | 290 | } {1 {wrong number of arguments to function count()}} |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 291 | |
| 292 | # ORDER BY expressions |
| 293 | # |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 294 | do_test select1-4.1 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 295 | set v [catch {execsql {SELECT f1 FROM test1 ORDER BY f1}} msg] |
| 296 | lappend v $msg |
| 297 | } {0 {11 33}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 298 | do_test select1-4.2 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 299 | set v [catch {execsql {SELECT f1 FROM test1 ORDER BY -f1}} msg] |
| 300 | lappend v $msg |
| 301 | } {0 {33 11}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 302 | do_test select1-4.3 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 303 | set v [catch {execsql {SELECT f1 FROM test1 ORDER BY min(f1,f2)}} msg] |
| 304 | lappend v $msg |
| 305 | } {0 {11 33}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 306 | do_test select1-4.4 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 307 | set v [catch {execsql {SELECT f1 FROM test1 ORDER BY min(f1)}} msg] |
| 308 | lappend v $msg |
drh | b7916a7 | 2009-05-27 10:31:29 +0000 | [diff] [blame] | 309 | } {1 {misuse of aggregate: min()}} |
dan | 5b1c07e | 2015-04-16 07:19:23 +0000 | [diff] [blame] | 310 | do_catchsql_test select1-4.5 { |
| 311 | INSERT INTO test1(f1) SELECT f1 FROM test1 ORDER BY min(f1); |
| 312 | } {1 {misuse of aggregate: min()}} |
drh | 18e87cf | 2006-04-11 14:16:21 +0000 | [diff] [blame] | 313 | |
| 314 | # The restriction not allowing constants in the ORDER BY clause |
| 315 | # has been removed. See ticket #1768 |
| 316 | #do_test select1-4.5 { |
| 317 | # catchsql { |
| 318 | # SELECT f1 FROM test1 ORDER BY 8.4; |
| 319 | # } |
| 320 | #} {1 {ORDER BY terms must not be non-integer constants}} |
| 321 | #do_test select1-4.6 { |
| 322 | # catchsql { |
| 323 | # SELECT f1 FROM test1 ORDER BY '8.4'; |
| 324 | # } |
| 325 | #} {1 {ORDER BY terms must not be non-integer constants}} |
| 326 | #do_test select1-4.7.1 { |
| 327 | # catchsql { |
| 328 | # SELECT f1 FROM test1 ORDER BY 'xyz'; |
| 329 | # } |
| 330 | #} {1 {ORDER BY terms must not be non-integer constants}} |
| 331 | #do_test select1-4.7.2 { |
| 332 | # catchsql { |
| 333 | # SELECT f1 FROM test1 ORDER BY -8.4; |
| 334 | # } |
| 335 | #} {1 {ORDER BY terms must not be non-integer constants}} |
| 336 | #do_test select1-4.7.3 { |
| 337 | # catchsql { |
| 338 | # SELECT f1 FROM test1 ORDER BY +8.4; |
| 339 | # } |
| 340 | #} {1 {ORDER BY terms must not be non-integer constants}} |
| 341 | #do_test select1-4.7.4 { |
| 342 | # catchsql { |
| 343 | # SELECT f1 FROM test1 ORDER BY 4294967296; -- constant larger than 32 bits |
| 344 | # } |
| 345 | #} {1 {ORDER BY terms must not be non-integer constants}} |
| 346 | |
drh | 9208643 | 2002-01-22 14:11:29 +0000 | [diff] [blame] | 347 | do_test select1-4.5 { |
drh | 18e87cf | 2006-04-11 14:16:21 +0000 | [diff] [blame] | 348 | execsql { |
| 349 | SELECT f1 FROM test1 ORDER BY 8.4 |
drh | 9208643 | 2002-01-22 14:11:29 +0000 | [diff] [blame] | 350 | } |
drh | 18e87cf | 2006-04-11 14:16:21 +0000 | [diff] [blame] | 351 | } {11 33} |
drh | e4de1fe | 2002-06-02 16:09:01 +0000 | [diff] [blame] | 352 | do_test select1-4.6 { |
drh | 18e87cf | 2006-04-11 14:16:21 +0000 | [diff] [blame] | 353 | execsql { |
| 354 | SELECT f1 FROM test1 ORDER BY '8.4' |
drh | e4de1fe | 2002-06-02 16:09:01 +0000 | [diff] [blame] | 355 | } |
drh | 18e87cf | 2006-04-11 14:16:21 +0000 | [diff] [blame] | 356 | } {11 33} |
| 357 | |
drh | e4de1fe | 2002-06-02 16:09:01 +0000 | [diff] [blame] | 358 | do_test select1-4.8 { |
| 359 | execsql { |
| 360 | CREATE TABLE t5(a,b); |
| 361 | INSERT INTO t5 VALUES(1,10); |
| 362 | INSERT INTO t5 VALUES(2,9); |
| 363 | SELECT * FROM t5 ORDER BY 1; |
| 364 | } |
| 365 | } {1 10 2 9} |
drh | 018d1a4 | 2005-01-15 01:52:31 +0000 | [diff] [blame] | 366 | do_test select1-4.9.1 { |
drh | e4de1fe | 2002-06-02 16:09:01 +0000 | [diff] [blame] | 367 | execsql { |
| 368 | SELECT * FROM t5 ORDER BY 2; |
| 369 | } |
| 370 | } {2 9 1 10} |
drh | 018d1a4 | 2005-01-15 01:52:31 +0000 | [diff] [blame] | 371 | do_test select1-4.9.2 { |
| 372 | execsql { |
| 373 | SELECT * FROM t5 ORDER BY +2; |
| 374 | } |
| 375 | } {2 9 1 10} |
| 376 | do_test select1-4.10.1 { |
drh | e4de1fe | 2002-06-02 16:09:01 +0000 | [diff] [blame] | 377 | catchsql { |
| 378 | SELECT * FROM t5 ORDER BY 3; |
| 379 | } |
danielk1977 | 01874bf | 2007-12-13 07:58:50 +0000 | [diff] [blame] | 380 | } {1 {1st ORDER BY term out of range - should be between 1 and 2}} |
drh | 018d1a4 | 2005-01-15 01:52:31 +0000 | [diff] [blame] | 381 | do_test select1-4.10.2 { |
| 382 | catchsql { |
| 383 | SELECT * FROM t5 ORDER BY -1; |
| 384 | } |
danielk1977 | 01874bf | 2007-12-13 07:58:50 +0000 | [diff] [blame] | 385 | } {1 {1st ORDER BY term out of range - should be between 1 and 2}} |
drh | e4de1fe | 2002-06-02 16:09:01 +0000 | [diff] [blame] | 386 | do_test select1-4.11 { |
| 387 | execsql { |
| 388 | INSERT INTO t5 VALUES(3,10); |
| 389 | SELECT * FROM t5 ORDER BY 2, 1 DESC; |
| 390 | } |
| 391 | } {2 9 3 10 1 10} |
| 392 | do_test select1-4.12 { |
| 393 | execsql { |
| 394 | SELECT * FROM t5 ORDER BY 1 DESC, b; |
| 395 | } |
| 396 | } {3 10 2 9 1 10} |
| 397 | do_test select1-4.13 { |
| 398 | execsql { |
| 399 | SELECT * FROM t5 ORDER BY b DESC, 1; |
| 400 | } |
| 401 | } {1 10 3 10 2 9} |
| 402 | |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 403 | |
| 404 | # ORDER BY ignored on an aggregate query |
| 405 | # |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 406 | do_test select1-5.1 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 407 | set v [catch {execsql {SELECT max(f1) FROM test1 ORDER BY f2}} msg] |
| 408 | lappend v $msg |
| 409 | } {0 33} |
| 410 | |
drh | 85e9e22 | 2008-07-15 00:27:34 +0000 | [diff] [blame] | 411 | execsql {CREATE TABLE test2(t1 text, t2 text)} |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 412 | execsql {INSERT INTO test2 VALUES('abc','xyz')} |
| 413 | |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 414 | # Check for column naming |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 415 | # |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 416 | do_test select1-6.1 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 417 | set v [catch {execsql2 {SELECT f1 FROM test1 ORDER BY f2}} msg] |
| 418 | lappend v $msg |
| 419 | } {0 {f1 11 f1 33}} |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 420 | do_test select1-6.1.1 { |
drh | afed086 | 2006-03-14 13:10:42 +0000 | [diff] [blame] | 421 | db eval {PRAGMA full_column_names=on} |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 422 | set v [catch {execsql2 {SELECT f1 FROM test1 ORDER BY f2}} msg] |
| 423 | lappend v $msg |
drh | 1bee3d7 | 2001-10-15 00:44:35 +0000 | [diff] [blame] | 424 | } {0 {test1.f1 11 test1.f1 33}} |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 425 | do_test select1-6.1.2 { |
drh | 1bee3d7 | 2001-10-15 00:44:35 +0000 | [diff] [blame] | 426 | set v [catch {execsql2 {SELECT f1 as 'f1' FROM test1 ORDER BY f2}} msg] |
| 427 | lappend v $msg |
| 428 | } {0 {f1 11 f1 33}} |
| 429 | do_test select1-6.1.3 { |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 430 | set v [catch {execsql2 {SELECT * FROM test1 WHERE f1==11}} msg] |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 431 | lappend v $msg |
drh | 79d5f63 | 2005-01-18 17:20:10 +0000 | [diff] [blame] | 432 | } {0 {f1 11 f2 22}} |
drh | 1bee3d7 | 2001-10-15 00:44:35 +0000 | [diff] [blame] | 433 | do_test select1-6.1.4 { |
drh | 98808ba | 2001-10-18 12:34:46 +0000 | [diff] [blame] | 434 | set v [catch {execsql2 {SELECT DISTINCT * FROM test1 WHERE f1==11}} msg] |
drh | afed086 | 2006-03-14 13:10:42 +0000 | [diff] [blame] | 435 | db eval {PRAGMA full_column_names=off} |
drh | 98808ba | 2001-10-18 12:34:46 +0000 | [diff] [blame] | 436 | lappend v $msg |
drh | 79d5f63 | 2005-01-18 17:20:10 +0000 | [diff] [blame] | 437 | } {0 {f1 11 f2 22}} |
drh | 98808ba | 2001-10-18 12:34:46 +0000 | [diff] [blame] | 438 | do_test select1-6.1.5 { |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 439 | set v [catch {execsql2 {SELECT * FROM test1 WHERE f1==11}} msg] |
| 440 | lappend v $msg |
| 441 | } {0 {f1 11 f2 22}} |
drh | 98808ba | 2001-10-18 12:34:46 +0000 | [diff] [blame] | 442 | do_test select1-6.1.6 { |
| 443 | set v [catch {execsql2 {SELECT DISTINCT * FROM test1 WHERE f1==11}} msg] |
| 444 | lappend v $msg |
| 445 | } {0 {f1 11 f2 22}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 446 | do_test select1-6.2 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 447 | set v [catch {execsql2 {SELECT f1 as xyzzy FROM test1 ORDER BY f2}} msg] |
| 448 | lappend v $msg |
| 449 | } {0 {xyzzy 11 xyzzy 33}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 450 | do_test select1-6.3 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 451 | set v [catch {execsql2 {SELECT f1 as "xyzzy" FROM test1 ORDER BY f2}} msg] |
| 452 | lappend v $msg |
| 453 | } {0 {xyzzy 11 xyzzy 33}} |
drh | d400728 | 2001-04-12 23:21:58 +0000 | [diff] [blame] | 454 | do_test select1-6.3.1 { |
| 455 | set v [catch {execsql2 {SELECT f1 as 'xyzzy ' FROM test1 ORDER BY f2}} msg] |
| 456 | lappend v $msg |
| 457 | } {0 {{xyzzy } 11 {xyzzy } 33}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 458 | do_test select1-6.4 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 459 | set v [catch {execsql2 {SELECT f1+F2 as xyzzy FROM test1 ORDER BY f2}} msg] |
| 460 | lappend v $msg |
| 461 | } {0 {xyzzy 33 xyzzy 77}} |
drh | c4a3c77 | 2001-04-04 11:48:57 +0000 | [diff] [blame] | 462 | do_test select1-6.4a { |
| 463 | set v [catch {execsql2 {SELECT f1+F2 FROM test1 ORDER BY f2}} msg] |
| 464 | lappend v $msg |
| 465 | } {0 {f1+F2 33 f1+F2 77}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 466 | do_test select1-6.5 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 467 | set v [catch {execsql2 {SELECT test1.f1+F2 FROM test1 ORDER BY f2}} msg] |
| 468 | lappend v $msg |
drh | e1b6a5b | 2000-07-29 13:06:59 +0000 | [diff] [blame] | 469 | } {0 {test1.f1+F2 33 test1.f1+F2 77}} |
drh | 1bee3d7 | 2001-10-15 00:44:35 +0000 | [diff] [blame] | 470 | do_test select1-6.5.1 { |
| 471 | execsql2 {PRAGMA full_column_names=on} |
| 472 | set v [catch {execsql2 {SELECT test1.f1+F2 FROM test1 ORDER BY f2}} msg] |
| 473 | execsql2 {PRAGMA full_column_names=off} |
| 474 | lappend v $msg |
| 475 | } {0 {test1.f1+F2 33 test1.f1+F2 77}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 476 | do_test select1-6.6 { |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 477 | set v [catch {execsql2 {SELECT test1.f1+F2, t1 FROM test1, test2 |
| 478 | ORDER BY f2}} msg] |
| 479 | lappend v $msg |
drh | e1b6a5b | 2000-07-29 13:06:59 +0000 | [diff] [blame] | 480 | } {0 {test1.f1+F2 33 t1 abc test1.f1+F2 77 t1 abc}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 481 | do_test select1-6.7 { |
drh | da9d6c4 | 2000-05-31 18:20:14 +0000 | [diff] [blame] | 482 | set v [catch {execsql2 {SELECT A.f1, t1 FROM test1 as A, test2 |
| 483 | ORDER BY f2}} msg] |
| 484 | lappend v $msg |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 485 | } {0 {f1 11 t1 abc f1 33 t1 abc}} |
drh | 2282792 | 2000-06-06 17:27:05 +0000 | [diff] [blame] | 486 | do_test select1-6.8 { |
drh | da9d6c4 | 2000-05-31 18:20:14 +0000 | [diff] [blame] | 487 | set v [catch {execsql2 {SELECT A.f1, f1 FROM test1 as A, test1 as B |
| 488 | ORDER BY f2}} msg] |
| 489 | lappend v $msg |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 490 | } {1 {ambiguous column name: f1}} |
drh | cc85b41 | 2000-06-07 15:11:27 +0000 | [diff] [blame] | 491 | do_test select1-6.8b { |
drh | da9d6c4 | 2000-05-31 18:20:14 +0000 | [diff] [blame] | 492 | set v [catch {execsql2 {SELECT A.f1, B.f1 FROM test1 as A, test1 as B |
| 493 | ORDER BY f2}} msg] |
| 494 | lappend v $msg |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 495 | } {1 {ambiguous column name: f2}} |
drh | cc85b41 | 2000-06-07 15:11:27 +0000 | [diff] [blame] | 496 | do_test select1-6.8c { |
| 497 | set v [catch {execsql2 {SELECT A.f1, f1 FROM test1 as A, test1 as A |
| 498 | ORDER BY f2}} msg] |
| 499 | lappend v $msg |
drh | 967e8b7 | 2000-06-21 13:59:10 +0000 | [diff] [blame] | 500 | } {1 {ambiguous column name: A.f1}} |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 501 | do_test select1-6.9.1 { |
| 502 | set v [catch {execsql {SELECT A.f1, B.f1 FROM test1 as A, test1 as B |
| 503 | ORDER BY A.f1, B.f1}} msg] |
| 504 | lappend v $msg |
| 505 | } {0 {11 11 11 33 33 11 33 33}} |
| 506 | do_test select1-6.9.2 { |
drh | da9d6c4 | 2000-05-31 18:20:14 +0000 | [diff] [blame] | 507 | set v [catch {execsql2 {SELECT A.f1, B.f1 FROM test1 as A, test1 as B |
| 508 | ORDER BY A.f1, B.f1}} msg] |
| 509 | lappend v $msg |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 510 | } {0 {f1 11 f1 11 f1 33 f1 33 f1 11 f1 11 f1 33 f1 33}} |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 511 | |
drh | e49b146 | 2008-07-09 01:39:44 +0000 | [diff] [blame] | 512 | do_test select1-6.9.3 { |
| 513 | db eval { |
| 514 | PRAGMA short_column_names=OFF; |
| 515 | PRAGMA full_column_names=OFF; |
| 516 | } |
| 517 | execsql2 { |
| 518 | SELECT test1 . f1, test1 . f2 FROM test1 LIMIT 1 |
| 519 | } |
| 520 | } {{test1 . f1} 11 {test1 . f2} 22} |
| 521 | do_test select1-6.9.4 { |
| 522 | db eval { |
| 523 | PRAGMA short_column_names=OFF; |
| 524 | PRAGMA full_column_names=ON; |
| 525 | } |
| 526 | execsql2 { |
| 527 | SELECT test1 . f1, test1 . f2 FROM test1 LIMIT 1 |
| 528 | } |
| 529 | } {test1.f1 11 test1.f2 22} |
| 530 | do_test select1-6.9.5 { |
| 531 | db eval { |
| 532 | PRAGMA short_column_names=OFF; |
| 533 | PRAGMA full_column_names=ON; |
| 534 | } |
| 535 | execsql2 { |
| 536 | SELECT 123.45; |
| 537 | } |
| 538 | } {123.45 123.45} |
drh | 93a960a | 2008-07-10 00:32:42 +0000 | [diff] [blame] | 539 | do_test select1-6.9.6 { |
| 540 | execsql2 { |
| 541 | SELECT * FROM test1 a, test1 b LIMIT 1 |
| 542 | } |
| 543 | } {a.f1 11 a.f2 22 b.f1 11 b.f2 22} |
| 544 | do_test select1-6.9.7 { |
| 545 | set x [execsql2 { |
| 546 | SELECT * FROM test1 a, (select 5, 6) LIMIT 1 |
| 547 | }] |
drh | b50596d | 2013-10-08 20:42:41 +0000 | [diff] [blame] | 548 | regsub -all {sq_[0-9a-fA-F_]+} $x {subquery} x |
drh | 93a960a | 2008-07-10 00:32:42 +0000 | [diff] [blame] | 549 | set x |
| 550 | } {a.f1 11 a.f2 22 sqlite_subquery.5 5 sqlite_subquery.6 6} |
| 551 | do_test select1-6.9.8 { |
| 552 | set x [execsql2 { |
| 553 | SELECT * FROM test1 a, (select 5 AS x, 6 AS y) AS b LIMIT 1 |
| 554 | }] |
| 555 | regsub -all {subquery_[0-9a-fA-F]+_} $x {subquery} x |
| 556 | set x |
| 557 | } {a.f1 11 a.f2 22 b.x 5 b.y 6} |
drh | 85e9e22 | 2008-07-15 00:27:34 +0000 | [diff] [blame] | 558 | do_test select1-6.9.9 { |
| 559 | execsql2 { |
| 560 | SELECT a.f1, b.f2 FROM test1 a, test1 b LIMIT 1 |
| 561 | } |
| 562 | } {test1.f1 11 test1.f2 22} |
| 563 | do_test select1-6.9.10 { |
| 564 | execsql2 { |
| 565 | SELECT f1, t1 FROM test1, test2 LIMIT 1 |
| 566 | } |
| 567 | } {test1.f1 11 test2.t1 abc} |
| 568 | do_test select1-6.9.11 { |
| 569 | db eval { |
| 570 | PRAGMA short_column_names=ON; |
| 571 | PRAGMA full_column_names=ON; |
| 572 | } |
| 573 | execsql2 { |
| 574 | SELECT a.f1, b.f2 FROM test1 a, test1 b LIMIT 1 |
| 575 | } |
| 576 | } {test1.f1 11 test1.f2 22} |
| 577 | do_test select1-6.9.12 { |
| 578 | execsql2 { |
| 579 | SELECT f1, t1 FROM test1, test2 LIMIT 1 |
| 580 | } |
| 581 | } {test1.f1 11 test2.t1 abc} |
| 582 | do_test select1-6.9.13 { |
| 583 | db eval { |
| 584 | PRAGMA short_column_names=ON; |
| 585 | PRAGMA full_column_names=OFF; |
| 586 | } |
| 587 | execsql2 { |
| 588 | SELECT a.f1, b.f1 FROM test1 a, test1 b LIMIT 1 |
| 589 | } |
| 590 | } {f1 11 f1 11} |
| 591 | do_test select1-6.9.14 { |
| 592 | execsql2 { |
| 593 | SELECT f1, t1 FROM test1, test2 LIMIT 1 |
| 594 | } |
| 595 | } {f1 11 t1 abc} |
| 596 | do_test select1-6.9.15 { |
| 597 | db eval { |
| 598 | PRAGMA short_column_names=OFF; |
| 599 | PRAGMA full_column_names=ON; |
| 600 | } |
| 601 | execsql2 { |
| 602 | SELECT a.f1, b.f1 FROM test1 a, test1 b LIMIT 1 |
| 603 | } |
| 604 | } {test1.f1 11 test1.f1 11} |
| 605 | do_test select1-6.9.16 { |
| 606 | execsql2 { |
| 607 | SELECT f1, t1 FROM test1, test2 LIMIT 1 |
| 608 | } |
| 609 | } {test1.f1 11 test2.t1 abc} |
| 610 | |
drh | 93a960a | 2008-07-10 00:32:42 +0000 | [diff] [blame] | 611 | |
drh | e49b146 | 2008-07-09 01:39:44 +0000 | [diff] [blame] | 612 | db eval { |
| 613 | PRAGMA short_column_names=ON; |
| 614 | PRAGMA full_column_names=OFF; |
| 615 | } |
| 616 | |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 617 | ifcapable compound { |
drh | c4a3c77 | 2001-04-04 11:48:57 +0000 | [diff] [blame] | 618 | do_test select1-6.10 { |
| 619 | set v [catch {execsql2 { |
| 620 | SELECT f1 FROM test1 UNION SELECT f2 FROM test1 |
| 621 | ORDER BY f2; |
| 622 | }} msg] |
| 623 | lappend v $msg |
drh | 9237825 | 2006-03-26 01:21:22 +0000 | [diff] [blame] | 624 | } {0 {f1 11 f1 22 f1 33 f1 44}} |
drh | c4a3c77 | 2001-04-04 11:48:57 +0000 | [diff] [blame] | 625 | do_test select1-6.11 { |
| 626 | set v [catch {execsql2 { |
| 627 | SELECT f1 FROM test1 UNION SELECT f2+100 FROM test1 |
drh | 4c77431 | 2007-12-08 21:10:20 +0000 | [diff] [blame] | 628 | ORDER BY f2+101; |
drh | c4a3c77 | 2001-04-04 11:48:57 +0000 | [diff] [blame] | 629 | }} msg] |
| 630 | lappend v $msg |
danielk1977 | 01874bf | 2007-12-13 07:58:50 +0000 | [diff] [blame] | 631 | } {1 {1st ORDER BY term does not match any column in the result set}} |
drh | 94ccde5 | 2007-04-13 16:06:32 +0000 | [diff] [blame] | 632 | |
| 633 | # Ticket #2296 |
danielk1977 | de3e41e | 2008-08-04 03:51:24 +0000 | [diff] [blame] | 634 | ifcapable subquery&&compound { |
drh | 94ccde5 | 2007-04-13 16:06:32 +0000 | [diff] [blame] | 635 | do_test select1-6.20 { |
| 636 | execsql { |
| 637 | CREATE TABLE t6(a TEXT, b TEXT); |
| 638 | INSERT INTO t6 VALUES('a','0'); |
| 639 | INSERT INTO t6 VALUES('b','1'); |
| 640 | INSERT INTO t6 VALUES('c','2'); |
| 641 | INSERT INTO t6 VALUES('d','3'); |
| 642 | SELECT a FROM t6 WHERE b IN |
| 643 | (SELECT b FROM t6 WHERE a<='b' UNION SELECT '3' AS x |
| 644 | ORDER BY 1 LIMIT 1) |
| 645 | } |
| 646 | } {a} |
| 647 | do_test select1-6.21 { |
| 648 | execsql { |
| 649 | SELECT a FROM t6 WHERE b IN |
| 650 | (SELECT b FROM t6 WHERE a<='b' UNION SELECT '3' AS x |
| 651 | ORDER BY 1 DESC LIMIT 1) |
| 652 | } |
| 653 | } {d} |
| 654 | do_test select1-6.22 { |
| 655 | execsql { |
| 656 | SELECT a FROM t6 WHERE b IN |
| 657 | (SELECT b FROM t6 WHERE a<='b' UNION SELECT '3' AS x |
| 658 | ORDER BY b LIMIT 2) |
| 659 | ORDER BY a; |
| 660 | } |
| 661 | } {a b} |
| 662 | do_test select1-6.23 { |
| 663 | execsql { |
| 664 | SELECT a FROM t6 WHERE b IN |
| 665 | (SELECT b FROM t6 WHERE a<='b' UNION SELECT '3' AS x |
| 666 | ORDER BY x DESC LIMIT 2) |
| 667 | ORDER BY a; |
| 668 | } |
| 669 | } {b d} |
danielk1977 | 284f4ac | 2007-12-10 05:03:46 +0000 | [diff] [blame] | 670 | } |
drh | 94ccde5 | 2007-04-13 16:06:32 +0000 | [diff] [blame] | 671 | |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 672 | } ;#ifcapable compound |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 673 | |
drh | d400728 | 2001-04-12 23:21:58 +0000 | [diff] [blame] | 674 | do_test select1-7.1 { |
| 675 | set v [catch {execsql { |
| 676 | SELECT f1 FROM test1 WHERE f2=; |
| 677 | }} msg] |
| 678 | lappend v $msg |
| 679 | } {1 {near ";": syntax error}} |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 680 | ifcapable compound { |
drh | d400728 | 2001-04-12 23:21:58 +0000 | [diff] [blame] | 681 | do_test select1-7.2 { |
| 682 | set v [catch {execsql { |
| 683 | SELECT f1 FROM test1 UNION SELECT WHERE; |
| 684 | }} msg] |
| 685 | lappend v $msg |
| 686 | } {1 {near "WHERE": syntax error}} |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 687 | } ;# ifcapable compound |
drh | d400728 | 2001-04-12 23:21:58 +0000 | [diff] [blame] | 688 | do_test select1-7.3 { |
| 689 | set v [catch {execsql {SELECT f1 FROM test1 as 'hi', test2 as}} msg] |
| 690 | lappend v $msg |
| 691 | } {1 {near "as": syntax error}} |
| 692 | do_test select1-7.4 { |
| 693 | set v [catch {execsql { |
| 694 | SELECT f1 FROM test1 ORDER BY; |
| 695 | }} msg] |
| 696 | lappend v $msg |
| 697 | } {1 {near ";": syntax error}} |
| 698 | do_test select1-7.5 { |
| 699 | set v [catch {execsql { |
| 700 | SELECT f1 FROM test1 ORDER BY f1 desc, f2 where; |
| 701 | }} msg] |
| 702 | lappend v $msg |
| 703 | } {1 {near "where": syntax error}} |
| 704 | do_test select1-7.6 { |
| 705 | set v [catch {execsql { |
| 706 | SELECT count(f1,f2 FROM test1; |
| 707 | }} msg] |
| 708 | lappend v $msg |
| 709 | } {1 {near "FROM": syntax error}} |
| 710 | do_test select1-7.7 { |
| 711 | set v [catch {execsql { |
| 712 | SELECT count(f1,f2+) FROM test1; |
| 713 | }} msg] |
| 714 | lappend v $msg |
| 715 | } {1 {near ")": syntax error}} |
| 716 | do_test select1-7.8 { |
| 717 | set v [catch {execsql { |
| 718 | SELECT f1 FROM test1 ORDER BY f2, f1+; |
| 719 | }} msg] |
| 720 | lappend v $msg |
| 721 | } {1 {near ";": syntax error}} |
drh | 1592659 | 2007-04-06 15:02:13 +0000 | [diff] [blame] | 722 | do_test select1-7.9 { |
| 723 | catchsql { |
| 724 | SELECT f1 FROM test1 LIMIT 5+3 OFFSET 11 ORDER BY f2; |
| 725 | } |
| 726 | } {1 {near "ORDER": syntax error}} |
drh | d400728 | 2001-04-12 23:21:58 +0000 | [diff] [blame] | 727 | |
| 728 | do_test select1-8.1 { |
| 729 | execsql {SELECT f1 FROM test1 WHERE 4.3+2.4 OR 1 ORDER BY f1} |
| 730 | } {11 33} |
| 731 | do_test select1-8.2 { |
| 732 | execsql { |
| 733 | SELECT f1 FROM test1 WHERE ('x' || f1) BETWEEN 'x10' AND 'x20' |
| 734 | ORDER BY f1 |
| 735 | } |
| 736 | } {11} |
| 737 | do_test select1-8.3 { |
| 738 | execsql { |
| 739 | SELECT f1 FROM test1 WHERE 5-3==2 |
| 740 | ORDER BY f1 |
| 741 | } |
| 742 | } {11 33} |
danielk1977 | 8d05984 | 2004-05-12 11:24:02 +0000 | [diff] [blame] | 743 | |
| 744 | # TODO: This test is failing because f1 is now being loaded off the |
| 745 | # disk as a vdbe integer, not a string. Hence the value of f1/(f1-11) |
| 746 | # changes because of rounding. Disable the test for now. |
| 747 | if 0 { |
drh | d400728 | 2001-04-12 23:21:58 +0000 | [diff] [blame] | 748 | do_test select1-8.4 { |
| 749 | execsql { |
drh | bb11351 | 2002-05-27 01:04:51 +0000 | [diff] [blame] | 750 | SELECT coalesce(f1/(f1-11),'x'), |
| 751 | coalesce(min(f1/(f1-11),5),'y'), |
| 752 | coalesce(max(f1/(f1-33),6),'z') |
drh | d400728 | 2001-04-12 23:21:58 +0000 | [diff] [blame] | 753 | FROM test1 ORDER BY f1 |
| 754 | } |
drh | bb11351 | 2002-05-27 01:04:51 +0000 | [diff] [blame] | 755 | } {x y 6 1.5 1.5 z} |
danielk1977 | 8d05984 | 2004-05-12 11:24:02 +0000 | [diff] [blame] | 756 | } |
drh | d400728 | 2001-04-12 23:21:58 +0000 | [diff] [blame] | 757 | do_test select1-8.5 { |
| 758 | execsql { |
| 759 | SELECT min(1,2,3), -max(1,2,3) |
| 760 | FROM test1 ORDER BY f1 |
| 761 | } |
| 762 | } {1 -3 1 -3} |
| 763 | |
drh | 6a53534 | 2001-10-19 16:44:56 +0000 | [diff] [blame] | 764 | |
| 765 | # Check the behavior when the result set is empty |
| 766 | # |
danielk1977 | cbb18d2 | 2004-05-28 11:37:27 +0000 | [diff] [blame] | 767 | # SQLite v3 always sets r(*). |
| 768 | # |
| 769 | # do_test select1-9.1 { |
| 770 | # catch {unset r} |
| 771 | # set r(*) {} |
| 772 | # db eval {SELECT * FROM test1 WHERE f1<0} r {} |
| 773 | # set r(*) |
| 774 | # } {} |
drh | 6a53534 | 2001-10-19 16:44:56 +0000 | [diff] [blame] | 775 | do_test select1-9.2 { |
| 776 | execsql {PRAGMA empty_result_callbacks=on} |
danielk1977 | cbb18d2 | 2004-05-28 11:37:27 +0000 | [diff] [blame] | 777 | catch {unset r} |
drh | 6a53534 | 2001-10-19 16:44:56 +0000 | [diff] [blame] | 778 | set r(*) {} |
| 779 | db eval {SELECT * FROM test1 WHERE f1<0} r {} |
| 780 | set r(*) |
| 781 | } {f1 f2} |
danielk1977 | 3e8c37e | 2005-01-21 03:12:14 +0000 | [diff] [blame] | 782 | ifcapable subquery { |
| 783 | do_test select1-9.3 { |
| 784 | set r(*) {} |
| 785 | db eval {SELECT * FROM test1 WHERE f1<(select count(*) from test2)} r {} |
| 786 | set r(*) |
| 787 | } {f1 f2} |
| 788 | } |
drh | 6a53534 | 2001-10-19 16:44:56 +0000 | [diff] [blame] | 789 | do_test select1-9.4 { |
| 790 | set r(*) {} |
| 791 | db eval {SELECT * FROM test1 ORDER BY f1} r {} |
| 792 | set r(*) |
| 793 | } {f1 f2} |
| 794 | do_test select1-9.5 { |
| 795 | set r(*) {} |
| 796 | db eval {SELECT * FROM test1 WHERE f1<0 ORDER BY f1} r {} |
| 797 | set r(*) |
| 798 | } {f1 f2} |
| 799 | unset r |
| 800 | |
drh | a2e0004 | 2002-01-22 03:13:42 +0000 | [diff] [blame] | 801 | # Check for ORDER BY clauses that refer to an AS name in the column list |
| 802 | # |
| 803 | do_test select1-10.1 { |
| 804 | execsql { |
| 805 | SELECT f1 AS x FROM test1 ORDER BY x |
| 806 | } |
| 807 | } {11 33} |
| 808 | do_test select1-10.2 { |
| 809 | execsql { |
| 810 | SELECT f1 AS x FROM test1 ORDER BY -x |
| 811 | } |
| 812 | } {33 11} |
| 813 | do_test select1-10.3 { |
| 814 | execsql { |
| 815 | SELECT f1-23 AS x FROM test1 ORDER BY abs(x) |
| 816 | } |
| 817 | } {10 -12} |
| 818 | do_test select1-10.4 { |
| 819 | execsql { |
| 820 | SELECT f1-23 AS x FROM test1 ORDER BY -abs(x) |
| 821 | } |
| 822 | } {-12 10} |
| 823 | do_test select1-10.5 { |
| 824 | execsql { |
| 825 | SELECT f1-22 AS x, f2-22 as y FROM test1 |
| 826 | } |
| 827 | } {-11 0 11 22} |
| 828 | do_test select1-10.6 { |
| 829 | execsql { |
| 830 | SELECT f1-22 AS x, f2-22 as y FROM test1 WHERE x>0 AND y<50 |
| 831 | } |
| 832 | } {11 22} |
drh | 93a960a | 2008-07-10 00:32:42 +0000 | [diff] [blame] | 833 | do_test select1-10.7 { |
| 834 | execsql { |
| 835 | SELECT f1 COLLATE nocase AS x FROM test1 ORDER BY x |
| 836 | } |
| 837 | } {11 33} |
drh | a2e0004 | 2002-01-22 03:13:42 +0000 | [diff] [blame] | 838 | |
drh | 5447322 | 2002-04-04 02:10:55 +0000 | [diff] [blame] | 839 | # Check the ability to specify "TABLE.*" in the result set of a SELECT |
| 840 | # |
| 841 | do_test select1-11.1 { |
| 842 | execsql { |
| 843 | DELETE FROM t3; |
| 844 | DELETE FROM t4; |
| 845 | INSERT INTO t3 VALUES(1,2); |
| 846 | INSERT INTO t4 VALUES(3,4); |
| 847 | SELECT * FROM t3, t4; |
| 848 | } |
| 849 | } {1 2 3 4} |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 850 | do_test select1-11.2.1 { |
| 851 | execsql { |
| 852 | SELECT * FROM t3, t4; |
| 853 | } |
| 854 | } {1 2 3 4} |
| 855 | do_test select1-11.2.2 { |
drh | 5447322 | 2002-04-04 02:10:55 +0000 | [diff] [blame] | 856 | execsql2 { |
| 857 | SELECT * FROM t3, t4; |
| 858 | } |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 859 | } {a 3 b 4 a 3 b 4} |
drh | cf55b7a | 2004-07-20 01:45:19 +0000 | [diff] [blame] | 860 | do_test select1-11.4.1 { |
drh | 5447322 | 2002-04-04 02:10:55 +0000 | [diff] [blame] | 861 | execsql { |
| 862 | SELECT t3.*, t4.b FROM t3, t4; |
| 863 | } |
| 864 | } {1 2 4} |
drh | cf55b7a | 2004-07-20 01:45:19 +0000 | [diff] [blame] | 865 | do_test select1-11.4.2 { |
| 866 | execsql { |
| 867 | SELECT "t3".*, t4.b FROM t3, t4; |
| 868 | } |
| 869 | } {1 2 4} |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 870 | do_test select1-11.5.1 { |
drh | 5447322 | 2002-04-04 02:10:55 +0000 | [diff] [blame] | 871 | execsql2 { |
| 872 | SELECT t3.*, t4.b FROM t3, t4; |
| 873 | } |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 874 | } {a 1 b 4 b 4} |
drh | 5447322 | 2002-04-04 02:10:55 +0000 | [diff] [blame] | 875 | do_test select1-11.6 { |
| 876 | execsql2 { |
| 877 | SELECT x.*, y.b FROM t3 AS x, t4 AS y; |
| 878 | } |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 879 | } {a 1 b 4 b 4} |
drh | 5447322 | 2002-04-04 02:10:55 +0000 | [diff] [blame] | 880 | do_test select1-11.7 { |
| 881 | execsql { |
| 882 | SELECT t3.b, t4.* FROM t3, t4; |
| 883 | } |
| 884 | } {2 3 4} |
| 885 | do_test select1-11.8 { |
| 886 | execsql2 { |
| 887 | SELECT t3.b, t4.* FROM t3, t4; |
| 888 | } |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 889 | } {b 4 a 3 b 4} |
drh | 5447322 | 2002-04-04 02:10:55 +0000 | [diff] [blame] | 890 | do_test select1-11.9 { |
| 891 | execsql2 { |
| 892 | SELECT x.b, y.* FROM t3 AS x, t4 AS y; |
| 893 | } |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 894 | } {b 4 a 3 b 4} |
drh | 5447322 | 2002-04-04 02:10:55 +0000 | [diff] [blame] | 895 | do_test select1-11.10 { |
| 896 | catchsql { |
| 897 | SELECT t5.* FROM t3, t4; |
| 898 | } |
| 899 | } {1 {no such table: t5}} |
| 900 | do_test select1-11.11 { |
| 901 | catchsql { |
| 902 | SELECT t3.* FROM t3 AS x, t4; |
| 903 | } |
| 904 | } {1 {no such table: t3}} |
danielk1977 | 3e8c37e | 2005-01-21 03:12:14 +0000 | [diff] [blame] | 905 | ifcapable subquery { |
| 906 | do_test select1-11.12 { |
| 907 | execsql2 { |
| 908 | SELECT t3.* FROM t3, (SELECT max(a), max(b) FROM t4) |
| 909 | } |
| 910 | } {a 1 b 2} |
| 911 | do_test select1-11.13 { |
| 912 | execsql2 { |
| 913 | SELECT t3.* FROM (SELECT max(a), max(b) FROM t4), t3 |
| 914 | } |
| 915 | } {a 1 b 2} |
| 916 | do_test select1-11.14 { |
| 917 | execsql2 { |
| 918 | SELECT * FROM t3, (SELECT max(a), max(b) FROM t4) AS 'tx' |
| 919 | } |
| 920 | } {a 1 b 2 max(a) 3 max(b) 4} |
| 921 | do_test select1-11.15 { |
| 922 | execsql2 { |
| 923 | SELECT y.*, t3.* FROM t3, (SELECT max(a), max(b) FROM t4) AS y |
| 924 | } |
| 925 | } {max(a) 3 max(b) 4 a 1 b 2} |
| 926 | } |
drh | c754fa5 | 2002-05-27 03:25:51 +0000 | [diff] [blame] | 927 | do_test select1-11.16 { |
| 928 | execsql2 { |
| 929 | SELECT y.* FROM t3 as y, t4 as z |
| 930 | } |
drh | 47a6db2 | 2005-01-18 16:02:40 +0000 | [diff] [blame] | 931 | } {a 1 b 2} |
drh | a2e0004 | 2002-01-22 03:13:42 +0000 | [diff] [blame] | 932 | |
drh | bf3a4fa | 2002-04-06 13:57:42 +0000 | [diff] [blame] | 933 | # Tests of SELECT statements without a FROM clause. |
| 934 | # |
| 935 | do_test select1-12.1 { |
| 936 | execsql2 { |
| 937 | SELECT 1+2+3 |
| 938 | } |
| 939 | } {1+2+3 6} |
| 940 | do_test select1-12.2 { |
| 941 | execsql2 { |
| 942 | SELECT 1,'hello',2 |
| 943 | } |
| 944 | } {1 1 'hello' hello 2 2} |
| 945 | do_test select1-12.3 { |
| 946 | execsql2 { |
| 947 | SELECT 1 AS 'a','hello' AS 'b',2 AS 'c' |
| 948 | } |
| 949 | } {a 1 b hello c 2} |
| 950 | do_test select1-12.4 { |
| 951 | execsql { |
| 952 | DELETE FROM t3; |
| 953 | INSERT INTO t3 VALUES(1,2); |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 954 | } |
| 955 | } {} |
| 956 | |
| 957 | ifcapable compound { |
| 958 | do_test select1-12.5 { |
| 959 | execsql { |
drh | bf3a4fa | 2002-04-06 13:57:42 +0000 | [diff] [blame] | 960 | SELECT * FROM t3 UNION SELECT 3 AS 'a', 4 ORDER BY a; |
| 961 | } |
| 962 | } {1 2 3 4} |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 963 | |
| 964 | do_test select1-12.6 { |
drh | bf3a4fa | 2002-04-06 13:57:42 +0000 | [diff] [blame] | 965 | execsql { |
| 966 | SELECT 3, 4 UNION SELECT * FROM t3; |
| 967 | } |
| 968 | } {1 2 3 4} |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 969 | } ;# ifcapable compound |
| 970 | |
danielk1977 | 3e8c37e | 2005-01-21 03:12:14 +0000 | [diff] [blame] | 971 | ifcapable subquery { |
| 972 | do_test select1-12.7 { |
| 973 | execsql { |
| 974 | SELECT * FROM t3 WHERE a=(SELECT 1); |
| 975 | } |
| 976 | } {1 2} |
| 977 | do_test select1-12.8 { |
| 978 | execsql { |
| 979 | SELECT * FROM t3 WHERE a=(SELECT 2); |
| 980 | } |
| 981 | } {} |
| 982 | } |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 983 | |
danielk1977 | e61b9f4 | 2005-01-21 04:25:47 +0000 | [diff] [blame] | 984 | ifcapable {compound && subquery} { |
| 985 | do_test select1-12.9 { |
| 986 | execsql2 { |
| 987 | SELECT x FROM ( |
drh | 9237825 | 2006-03-26 01:21:22 +0000 | [diff] [blame] | 988 | SELECT a AS x, b AS y FROM t3 UNION SELECT a,b FROM t4 ORDER BY a,b |
danielk1977 | e61b9f4 | 2005-01-21 04:25:47 +0000 | [diff] [blame] | 989 | ) ORDER BY x; |
| 990 | } |
| 991 | } {x 1 x 3} |
| 992 | do_test select1-12.10 { |
| 993 | execsql2 { |
| 994 | SELECT z.x FROM ( |
drh | 9237825 | 2006-03-26 01:21:22 +0000 | [diff] [blame] | 995 | SELECT a AS x,b AS y FROM t3 UNION SELECT a, b FROM t4 ORDER BY a,b |
danielk1977 | e61b9f4 | 2005-01-21 04:25:47 +0000 | [diff] [blame] | 996 | ) AS 'z' ORDER BY x; |
| 997 | } |
| 998 | } {x 1 x 3} |
danielk1977 | 27c7743 | 2004-11-22 13:35:41 +0000 | [diff] [blame] | 999 | } ;# ifcapable compound |
drh | d5feede | 2002-05-08 21:46:14 +0000 | [diff] [blame] | 1000 | |
danielk1977 | 13a68c3 | 2005-12-15 10:11:30 +0000 | [diff] [blame] | 1001 | |
danielk1977 | 327bd59 | 2006-01-13 13:01:19 +0000 | [diff] [blame] | 1002 | # Check for a VDBE stack growth problem that existed at one point. |
| 1003 | # |
danielk1977 | 1576cd9 | 2006-01-14 08:02:28 +0000 | [diff] [blame] | 1004 | ifcapable subquery { |
| 1005 | do_test select1-13.1 { |
danielk1977 | 327bd59 | 2006-01-13 13:01:19 +0000 | [diff] [blame] | 1006 | execsql { |
danielk1977 | 1576cd9 | 2006-01-14 08:02:28 +0000 | [diff] [blame] | 1007 | BEGIN; |
| 1008 | create TABLE abc(a, b, c, PRIMARY KEY(a, b)); |
| 1009 | INSERT INTO abc VALUES(1, 1, 1); |
danielk1977 | 327bd59 | 2006-01-13 13:01:19 +0000 | [diff] [blame] | 1010 | } |
danielk1977 | 1576cd9 | 2006-01-14 08:02:28 +0000 | [diff] [blame] | 1011 | for {set i 0} {$i<10} {incr i} { |
| 1012 | execsql { |
| 1013 | INSERT INTO abc SELECT a+(select max(a) FROM abc), |
| 1014 | b+(select max(a) FROM abc), c+(select max(a) FROM abc) FROM abc; |
| 1015 | } |
| 1016 | } |
| 1017 | execsql {COMMIT} |
| 1018 | |
| 1019 | # This used to seg-fault when the problem existed. |
| 1020 | execsql { |
| 1021 | SELECT count( |
| 1022 | (SELECT a FROM abc WHERE a = NULL AND b >= upper.c) |
| 1023 | ) FROM abc AS upper; |
| 1024 | } |
| 1025 | } {0} |
| 1026 | } |
danielk1977 | 327bd59 | 2006-01-13 13:01:19 +0000 | [diff] [blame] | 1027 | |
danielk1977 | a3f0659 | 2009-04-23 14:58:39 +0000 | [diff] [blame] | 1028 | foreach tab [db eval {SELECT name FROM sqlite_master WHERE type = 'table'}] { |
| 1029 | db eval "DROP TABLE $tab" |
| 1030 | } |
danielk1977 | f7b9d66 | 2008-06-23 18:49:43 +0000 | [diff] [blame] | 1031 | db close |
danielk1977 | f7b9d66 | 2008-06-23 18:49:43 +0000 | [diff] [blame] | 1032 | sqlite3 db test.db |
danielk1977 | a3f0659 | 2009-04-23 14:58:39 +0000 | [diff] [blame] | 1033 | |
danielk1977 | f7b9d66 | 2008-06-23 18:49:43 +0000 | [diff] [blame] | 1034 | do_test select1-14.1 { |
| 1035 | execsql { |
| 1036 | SELECT * FROM sqlite_master WHERE rowid>10; |
| 1037 | SELECT * FROM sqlite_master WHERE rowid=10; |
| 1038 | SELECT * FROM sqlite_master WHERE rowid<10; |
| 1039 | SELECT * FROM sqlite_master WHERE rowid<=10; |
| 1040 | SELECT * FROM sqlite_master WHERE rowid>=10; |
| 1041 | SELECT * FROM sqlite_master; |
| 1042 | } |
| 1043 | } {} |
| 1044 | do_test select1-14.2 { |
| 1045 | execsql { |
| 1046 | SELECT 10 IN (SELECT rowid FROM sqlite_master); |
| 1047 | } |
| 1048 | } {0} |
| 1049 | |
drh | 01e61ee | 2009-04-10 15:38:42 +0000 | [diff] [blame] | 1050 | if {[db one {PRAGMA locking_mode}]=="normal"} { |
| 1051 | # Check that ticket #3771 has been fixed. This test does not |
| 1052 | # work with locking_mode=EXCLUSIVE so disable in that case. |
| 1053 | # |
| 1054 | do_test select1-15.1 { |
| 1055 | execsql { |
| 1056 | CREATE TABLE t1(a); |
| 1057 | CREATE INDEX i1 ON t1(a); |
| 1058 | INSERT INTO t1 VALUES(1); |
| 1059 | INSERT INTO t1 VALUES(2); |
| 1060 | INSERT INTO t1 VALUES(3); |
| 1061 | } |
| 1062 | } {} |
| 1063 | do_test select1-15.2 { |
| 1064 | sqlite3 db2 test.db |
| 1065 | execsql { DROP INDEX i1 } db2 |
| 1066 | db2 close |
| 1067 | } {} |
| 1068 | do_test select1-15.3 { |
| 1069 | execsql { SELECT 2 IN (SELECT a FROM t1) } |
| 1070 | } {1} |
| 1071 | } |
drh | 6329605 | 2012-02-23 17:35:28 +0000 | [diff] [blame] | 1072 | |
| 1073 | # Crash bug reported on the mailing list on 2012-02-23 |
| 1074 | # |
| 1075 | do_test select1-16.1 { |
| 1076 | catchsql {SELECT 1 FROM (SELECT *)} |
| 1077 | } {1 {no tables specified}} |
drh | b8289a8 | 2015-04-17 15:16:58 +0000 | [diff] [blame] | 1078 | |
| 1079 | # 2015-04-17: assertion fix. |
| 1080 | do_catchsql_test select1-16.2 { |
| 1081 | SELECT 1 FROM sqlite_master LIMIT 1,#1; |
| 1082 | } {1 {near "#1": syntax error}} |
drh | 01e61ee | 2009-04-10 15:38:42 +0000 | [diff] [blame] | 1083 | |
drh | 3aadb2e | 2000-05-31 17:59:25 +0000 | [diff] [blame] | 1084 | finish_test |