Overview
| SHA1 Hash: | 7d346250e8a212880c4635a455cc9c98a1395c4c |
|---|---|
| Date: | 2013-01-30 01:46:06 |
| User: | drh |
| Comment: | Remove some debugging logic accidently left in the limit.test module. |
Tags And Properties
- branch=trunk inherited from [704b122e53]
- sym-trunk inherited from [704b122e53]
Changes
Changes to test/limit.test
464 } {1 {no such column: x}} 464 } {1 {no such column: x}} 465 do_test limit-12.4 { 465 do_test limit-12.4 { 466 catchsql { 466 catchsql { 467 SELECT * FROM t1 LIMIT 1 OFFSET x 467 SELECT * FROM t1 LIMIT 1 OFFSET x 468 } 468 } 469 } {1 {no such column: x}} 469 } {1 {no such column: x}} 470 470 471 db close < 472 sqlite3_shutdown < 473 sqlite3_config_lookaside 0 0 < 474 sqlite3_initialize < 475 sqlite3 db :memory: < 476 # Ticket [db4d96798da8b] 471 # Ticket [db4d96798da8b] 477 # LIMIT does not work with nested views containing UNION ALL 472 # LIMIT does not work with nested views containing UNION ALL 478 # 473 # 479 do_test limit-13.1 { 474 do_test limit-13.1 { 480 db eval { 475 db eval { 481 CREATE TABLE t13(x); 476 CREATE TABLE t13(x); 482 INSERT INTO t13 VALUES(1),(2); 477 INSERT INTO t13 VALUES(1),(2);