First public contribution.
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
12 # This file implements regression tests for SQLite library. The
13 # focus of this script is correct code generation of aliased result-set
14 # values. See ticket #3343.
16 # $Id: alias.test,v 1.1 2008/08/29 02:14:03 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
21 # A procedure to return a sequence of increasing integers.
23 namespace eval ::seq {
38 db function sequence ::seq::value
41 INSERT INTO t1 VALUES(9);
42 INSERT INTO t1 VALUES(8);
43 INSERT INTO t1 VALUES(7);
44 SELECT x, sequence() FROM t1;
50 --pragma vdbe_listing=on; pragma vdbe_trace=on;
51 SELECT x, sequence() AS y FROM t1 WHERE y>0
57 SELECT x, sequence() AS y FROM t1 WHERE y>0 AND y<99
63 SELECT x, sequence() AS y FROM t1 WHERE y>0 AND y<99 AND y!=55
69 SELECT x, sequence() AS y FROM t1
70 WHERE y>0 AND y<99 AND y!=55 AND y NOT IN (56,57,58)
71 AND y NOT LIKE 'abc%' AND y%10==2
77 SELECT x, sequence() AS y FROM t1 WHERE y BETWEEN 0 AND 99
83 SELECT x, sequence() AS y FROM t1 WHERE y IN (55,66,3)
89 SELECT x, 1-sequence() AS y FROM t1 ORDER BY y
95 SELECT x, sequence() AS y FROM t1 ORDER BY -y
101 SELECT x, sequence() AS y FROM t1 ORDER BY x%2, y
105 unset -nocomplain random_int_list
106 set random_int_list [db eval {
107 SELECT random()&2147483647 AS r FROM t1, t1, t1, t1 ORDER BY r
110 lsort -integer $::random_int_list
116 SELECT 4 UNION SELECT 1 ORDER BY 1
121 SELECT 4 UNION SELECT 1 UNION SELECT 9 ORDER BY 1
126 # Aliases in the GROUP BY clause cause the expression to be evaluated
127 # twice in the current implementation. This might change in the future.
132 SELECT sequence(*) AS y, count(*) AS z FROM t1 GROUP BY y ORDER BY z, y