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

Unified Diff: third_party/sqlite/src/test/tkt-8c63ff0ec.test

Issue 949043002: Add //third_party/sqlite to dirs_to_snapshot, remove net_sql.patch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/src/test/tkt-868145d012.test ('k') | third_party/sqlite/src/test/tkt-91e2e8ba6f.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/tkt-8c63ff0ec.test
diff --git a/third_party/sqlite/src/test/tkt-8c63ff0ec.test b/third_party/sqlite/src/test/tkt-8c63ff0ec.test
new file mode 100644
index 0000000000000000000000000000000000000000..d4aaefd74ad45b3569ab5207160bce1095ebac93
--- /dev/null
+++ b/third_party/sqlite/src/test/tkt-8c63ff0ec.test
@@ -0,0 +1,48 @@
+# 2014-02-25
+#
+# 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.
+#
+#***********************************************************************
+#
+# Test cases to show that ticket [8c63ff0eca81a9132d8d67b31cd6ae9712a2cc6f]
+# "Incorrect query result on a UNION ALL" which was caused by using the same
+# temporary register in concurrent co-routines, as been fixed.
+#
+
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+set ::testprefix tkt-8c63ff0ec
+
+do_execsql_test 1.1 {
+ CREATE TABLE t1(a INTEGER PRIMARY KEY, b, c, d, e);
+ INSERT INTO t1 VALUES(1,20,30,40,50),(3,60,70,80,90);
+ CREATE TABLE t2(x INTEGER PRIMARY KEY);
+ INSERT INTO t2 VALUES(2);
+ CREATE TABLE t3(z);
+ INSERT INTO t3 VALUES(2),(2),(2),(2);
+
+ SELECT a, b+c FROM t1
+ UNION ALL
+ SELECT x, 5 FROM t2 JOIN t3 ON z=x WHERE x=2
+ ORDER BY a;
+} {1 50 2 5 2 5 2 5 2 5 3 130}
+do_execsql_test 1.2 {
+ SELECT a, b+c+d FROM t1
+ UNION ALL
+ SELECT x, 5 FROM t2 JOIN t3 ON z=x WHERE x=2
+ ORDER BY a;
+} {1 90 2 5 2 5 2 5 2 5 3 210}
+do_execsql_test 1.3 {
+ SELECT a, b+c+d+e FROM t1
+ UNION ALL
+ SELECT x, 5 FROM t2 JOIN t3 ON z=x WHERE x=2
+ ORDER BY a;
+} {1 140 2 5 2 5 2 5 2 5 3 300}
+
+finish_test
« no previous file with comments | « third_party/sqlite/src/test/tkt-868145d012.test ('k') | third_party/sqlite/src/test/tkt-91e2e8ba6f.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698