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 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file implements tests to verify that ticket [3a77c9714e] has been
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
24 set testprefix "tkt-3a77c9714e"
27 CREATE TABLE t1(t1_id INTEGER PRIMARY KEY, t1_title TEXT);
28 CREATE TABLE t2(t2_id INTEGER PRIMARY KEY, t2_title TEXT);
29 CREATE TABLE t3(t3_id INTEGER PRIMARY KEY, t3_title TEXT);
31 INSERT INTO t1 (t1_id, t1_title) VALUES (888, 'ABCDEF');
32 INSERT INTO t2 (t2_id, t2_title) VALUES (999, 'ABCDEF');
33 INSERT INTO t3 (t3_id, t3_title) VALUES (999, 'ABCDEF');
37 SELECT t1_title, t2_title
40 t2_id = (SELECT t3_id FROM
41 ( SELECT t3_id FROM t3 WHERE t3_title=t1_title LIMIT 500 )
46 CREATE TABLE [Beginnings] (
47 [Id] INTEGER PRIMARY KEY AUTOINCREMENT,[Title] TEXT, [EndingId] INTEGER
49 CREATE TABLE [Endings] (Id INT,Title TEXT,EndingId INT);
50 INSERT INTO Beginnings (Id, Title, EndingId) VALUES (1, 'FACTOR', 18);
51 INSERT INTO Beginnings (Id, Title, EndingId) VALUES (2, 'SWIMM', 18);
52 INSERT INTO Endings (Id, Title, EndingId) VALUES (1, 'ING', 18);
57 SrcWord, Beginnings.Title
59 (SELECT 'FACTORING' AS SrcWord UNION SELECT 'SWIMMING' AS SrcWord )
62 WHERE Beginnings.Id= (
63 SELECT BeginningId FROM (
64 SELECT SrcWord, B.Id as BeginningId, B.Title || E.Title As Connected
65 FROM Beginnings B LEFT JOIN Endings E ON B.EndingId=E.EndingId
66 WHERE Connected=SrcWord LIMIT 1
69 } {FACTORING FACTOR SWIMMING SWIMM}