OLD | NEW |
1 # 2011 June 23 | 1 # 2011 June 23 |
2 # | 2 # |
3 # May you do good and not evil. | 3 # May you do good and not evil. |
4 # May you find forgiveness for yourself and forgive others. | 4 # May you find forgiveness for yourself and forgive others. |
5 # May you share freely, never taking more than you give. | 5 # May you share freely, never taking more than you give. |
6 # | 6 # |
7 #*********************************************************************** | 7 #*********************************************************************** |
8 # | 8 # |
9 # This file contains tests for SQLite. Specifically, it tests that SQLite | 9 # This file contains tests for SQLite. Specifically, it tests that SQLite |
10 # does not crash and an error is returned if localhost() fails. This | 10 # does not crash and an error is returned if localhost() fails. This |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 (SELECT * FROM t1 LIMIT 5 OFFSET 0) AS a, t1 AS b WHERE a.x = b.x | 43 (SELECT * FROM t1 LIMIT 5 OFFSET 0) AS a, t1 AS b WHERE a.x = b.x |
44 LIMIT 5 OFFSET 0; | 44 LIMIT 5 OFFSET 0; |
45 } {1 1.1} | 45 } {1 1.1} |
46 | 46 |
47 do_execsql_test 1.7 { | 47 do_execsql_test 1.7 { |
48 CREATE VIEW v1 AS SELECT * FROM t1 LIMIT 5; | 48 CREATE VIEW v1 AS SELECT * FROM t1 LIMIT 5; |
49 SELECT a.x/10, a.y/10 FROM v1 AS a, t1 AS b WHERE a.x = b.x LIMIT 5 OFFSET 0; | 49 SELECT a.x/10, a.y/10 FROM v1 AS a, t1 AS b WHERE a.x = b.x LIMIT 5 OFFSET 0; |
50 } {1 1.1} | 50 } {1 1.1} |
51 | 51 |
52 finish_test | 52 finish_test |
OLD | NEW |