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

Unified Diff: third_party/sqlite/src/test/rowvaluefault.test

Issue 2751253002: [sql] Import SQLite 3.17.0. (Closed)
Patch Set: also clang on Linux i386 Created 3 years, 9 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/rowvalue9.test ('k') | third_party/sqlite/src/test/savepoint3.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/rowvaluefault.test
diff --git a/third_party/sqlite/src/test/rowvaluefault.test b/third_party/sqlite/src/test/rowvaluefault.test
new file mode 100644
index 0000000000000000000000000000000000000000..ac1b236ba42c4ced014e4543d5d6b9d5611f1d47
--- /dev/null
+++ b/third_party/sqlite/src/test/rowvaluefault.test
@@ -0,0 +1,71 @@
+# 2016 June 17
+#
+# 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.
+#
+
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+source $testdir/malloc_common.tcl
+set ::testprefix rowvaluefault
+
+do_execsql_test 1.0 {
+ CREATE TABLE xyz(one, two, thr, fou);
+ INSERT INTO xyz VALUES('A', 'A', 'A', 1);
+ INSERT INTO xyz VALUES('B', 'B', 'B', 2);
+ INSERT INTO xyz VALUES('C', 'C', 'C', 3);
+ INSERT INTO xyz VALUES('D', 'D', 'D', 4);
+
+ CREATE UNIQUE INDEX xyz_one_two ON xyz(one, two);
+}
+
+do_faultsim_test 1 -faults oom* -body {
+ execsql { SELECT fou FROM xyz WHERE (one, two, thr) = ('B', 'B', 'B') }
+} -test {
+ faultsim_test_result {0 2}
+}
+
+do_faultsim_test 2 -faults oom* -body {
+ execsql { SELECT fou FROM xyz WHERE (two, thr) IS ('C', 'C') }
+} -test {
+ faultsim_test_result {0 3}
+}
+
+do_faultsim_test 3 -faults oom* -body {
+ execsql { SELECT fou FROM xyz WHERE (one, two, thr) > ('B', 'B', 'B') }
+} -test {
+ faultsim_test_result {0 {3 4}}
+}
+
+do_faultsim_test 4 -faults oom* -body {
+ execsql { SELECT fou FROM xyz WHERE (one, two) IN (SELECT one, two FROM xyz) }
+} -test {
+ faultsim_test_result {0 {1 2 3 4}}
+}
+
+do_faultsim_test 5 -faults oom* -body {
+ execsql {
+ SELECT fou FROM xyz
+ WHERE (one, two, thr) IN (SELECT one, two, thr FROM xyz)
+ }
+} -test {
+ faultsim_test_result {0 {1 2 3 4}}
+}
+
+do_faultsim_test 6 -faults oom* -body {
+ execsql {
+ SELECT fou FROM xyz
+ WHERE (one, two, thr) BETWEEN ('B', 'B', 'B') AND ('C', 'C', 'C') }
+} -test {
+ faultsim_test_result {0 {2 3}}
+}
+
+finish_test
« no previous file with comments | « third_party/sqlite/src/test/rowvalue9.test ('k') | third_party/sqlite/src/test/savepoint3.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698