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

Unified Diff: third_party/sqlite/src/mptest/crash01.test

Issue 1610963002: Import SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/mkopcodeh.awk ('k') | third_party/sqlite/src/mptest/mptest.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/mptest/crash01.test
diff --git a/third_party/sqlite/src/mptest/crash01.test b/third_party/sqlite/src/mptest/crash01.test
index 46f170cecc2c2f2a28fa94c123d565592a3e49c7..f1483dfa1d398c7fe8bb9d6a268110f0ec2ef4f3 100644
--- a/third_party/sqlite/src/mptest/crash01.test
+++ b/third_party/sqlite/src/mptest/crash01.test
@@ -32,6 +32,7 @@
--end
--wait 1
--task 2
+ DROP TABLE IF EXISTS t2;
CREATE TABLE t2(a INTEGER PRIMARY KEY, b);
INSERT INTO t2 SELECT a, b FROM t1;
UPDATE t1 SET b='x'||a||'y';
@@ -46,6 +47,7 @@
--match 29 28 27 26 25
--end
--task 3
+ DROP TABLE IF EXISTS t3;
CREATE TABLE t3(a INTEGER PRIMARY KEY, b);
INSERT INTO t3 SELECT a, b FROM t1;
UPDATE t1 SET b='x'||a||'y';
@@ -60,6 +62,7 @@
--match 29 28 27 26 25
--end
--task 4
+ DROP TABLE IF EXISTS t4;
CREATE TABLE t4(a INTEGER PRIMARY KEY, b);
INSERT INTO t4 SELECT a, b FROM t1;
UPDATE t1 SET b='x'||a||'y';
@@ -74,6 +77,7 @@
--match 29 28 27 26 25
--end
--task 5
+ DROP TABLE IF EXISTS t5;
CREATE TABLE t5(a INTEGER PRIMARY KEY, b);
INSERT INTO t5 SELECT a, b FROM t1;
UPDATE t1 SET b='x'||a||'y';
« no previous file with comments | « third_party/sqlite/src/mkopcodeh.awk ('k') | third_party/sqlite/src/mptest/mptest.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698