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
21 CREATE TABLE t1(x INTEGER, y REAL);
22 INSERT INTO t1 VALUES(11, 11);
26 SELECT x/10, y/10 FROM t1;
30 SELECT x/10, y/10 FROM (SELECT * FROM t1);
34 SELECT x/10, y/10 FROM (SELECT * FROM t1 LIMIT 5 OFFSET 0);
38 SELECT x/10, y/10 FROM (SELECT * FROM t1 LIMIT 5 OFFSET 0) LIMIT 5 OFFSET 0;
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
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;