961a72601b
FossilOrigin-Name: d554f710a5abbe64022f47a14ef67227c861a8f0991d85d240434e9a709cf8b8
40 lines
956 B
Plaintext
40 lines
956 B
Plaintext
# 2020-12-22
|
|
#
|
|
# The author disclaims copyright to this source code. In place of
|
|
# a legal notice, here is a blessing:
|
|
#
|
|
# May you do good and not evil.
|
|
# May you find forgiveness for yourself and forgive others.
|
|
# May you share freely, never taking more than you give.
|
|
#
|
|
#***********************************************************************
|
|
# This file implements regression tests for SQLite library. The
|
|
# focus of this file is flattening UNION ALL sub-queries.
|
|
#
|
|
|
|
set testdir [file dirname $argv0]
|
|
source $testdir/tester.tcl
|
|
set testprefix unionall2
|
|
|
|
do_execsql_test 1.0 {
|
|
CREATE TABLE t1(a, b);
|
|
CREATE TABLE t2(c, d);
|
|
|
|
CREATE VIEW v1 AS SELECT * FROM t1, t2;
|
|
CREATE VIEW v2 AS SELECT * FROM t1, t2;
|
|
|
|
CREATE VIEW vA AS
|
|
SELECT * FROM v1, (
|
|
SELECT * FROM t1 LEFT JOIN t2 ON (a=c)
|
|
)
|
|
UNION ALL
|
|
SELECT * FROM v1, v2
|
|
}
|
|
|
|
do_execsql_test 1.1 {
|
|
SELECT 1 FROM vA, vA, vA, vA, vA, vA, vA, vA, vA, vA
|
|
}
|
|
|
|
|
|
finish_test
|