Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: third_party/sqlite/sqlite-src-3080704/test/selectF.test

Issue 883353008: [sql] Import reference version of SQLite 3.8.7.4. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hold back encoding change which is messing up patch. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # 2014-03-03
2 #
3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
5 #
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.
9 #
10 #***********************************************************************
11 #
12 # This file verifies that an OP_Copy operation is used instead of OP_SCopy
13 # in a compound select in a case where the source register might be changed
14 # before the copy is used.
15 #
16
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
19 set testprefix selectF
20
21 do_execsql_test 1 {
22 BEGIN TRANSACTION;
23 CREATE TABLE t1(a, b, c);
24 INSERT INTO "t1" VALUES(1,'one','I');
25 CREATE TABLE t2(d, e, f);
26 INSERT INTO "t2" VALUES(5,'ten','XX');
27 INSERT INTO "t2" VALUES(6,NULL,NULL);
28
29 CREATE INDEX i1 ON t1(b, a);
30 COMMIT;
31 }
32
33 #explain_i {
34 # SELECT * FROM t2
35 # UNION ALL
36 # SELECT * FROM t1 WHERE a<5
37 # ORDER BY 2, 1
38 #}
39
40 do_execsql_test 2 {
41 SELECT * FROM t2
42 UNION ALL
43 SELECT * FROM t1 WHERE a<5
44 ORDER BY 2, 1
45 } {6 {} {} 1 one I 5 ten XX}
46
47
48
49 finish_test
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3080704/test/selectE.test ('k') | third_party/sqlite/sqlite-src-3080704/test/server1.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698