Update test file walprotocol.test to account for the changes in the wal
[sqlite.git] / test / tkt-91e2e8ba6f.test
blob57f13740a256d27c41adedf821164e8ebf24f889
1 # 2011 June 23
3 #    May you do good and not evil.
4 #    May you find forgiveness for yourself and forgive others.
5 #    May you share freely, never taking more than you give.
7 #***********************************************************************
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 
11 # is the problem reported by ticket 91e2e8ba6f.
14 set testdir [file dirname $argv0]
15 source $testdir/tester.tcl
17 set testprefix tkt-91e2e8ba6f
20 do_execsql_test 1.1 {
21   CREATE TABLE t1(x INTEGER, y REAL);
22   INSERT INTO t1 VALUES(11, 11);
23 } {}
25 do_execsql_test 1.2 {
26   SELECT x/10, y/10 FROM t1;
27 } {1 1.1}
29 do_execsql_test 1.3 {
30   SELECT x/10, y/10 FROM (SELECT * FROM t1);
31 } {1 1.1}
33 do_execsql_test 1.4 {
34   SELECT x/10, y/10 FROM (SELECT * FROM t1 LIMIT 5 OFFSET 0);
35 } {1 1.1}
37 do_execsql_test 1.5 {
38   SELECT x/10, y/10 FROM (SELECT * FROM t1 LIMIT 5 OFFSET 0) LIMIT 5 OFFSET 0;
39 } {1 1.1}
41 do_execsql_test 1.6 {
42   SELECT a.x/10, a.y/10 FROM 
43     (SELECT * FROM t1 LIMIT 5 OFFSET 0) AS a, t1 AS b WHERE a.x = b.x
44   LIMIT 5 OFFSET 0;
45 } {1 1.1}
47 do_execsql_test 1.7 {
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;
50 } {1 1.1}
52 finish_test