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

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

Issue 6990047: Import SQLite 3.7.6.3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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/filefmt.test ('k') | third_party/sqlite/src/test/fkey2.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/test/fkey1.test
diff --git a/third_party/sqlite/src/test/fkey1.test b/third_party/sqlite/src/test/fkey1.test
index 8a4fb70d3b29dc44eb72d67dac65e3dc98ecf5cd..e7c00d16d4b38a9fbbc22f39f4c18ac735864c68 100644
--- a/third_party/sqlite/src/test/fkey1.test
+++ b/third_party/sqlite/src/test/fkey1.test
@@ -46,7 +46,7 @@ do_test fkey1-1.1 {
do_test fkey1-1.2 {
execsql {
CREATE TABLE t3(
- a INTEGER REFERENCES t2 ON INSERT RESTRICT,
+ a INTEGER REFERENCES t2,
b INTEGER REFERENCES t1,
FOREIGN KEY (a,b) REFERENCES t2(x,y)
);
@@ -80,9 +80,9 @@ do_test fkey1-3.1 {
);
PRAGMA foreign_key_list(t6);
}
-} [concat \
- {0 0 t5 e c RESTRICT RESTRICT NONE} \
- {1 0 t5 d {} RESTRICT RESTRICT NONE} \
+} [concat \
+ {0 0 t5 e c {NO ACTION} {NO ACTION} NONE} \
+ {1 0 t5 d {} {NO ACTION} {NO ACTION} NONE} \
]
do_test fkey1-3.2 {
execsql {
@@ -91,9 +91,9 @@ do_test fkey1-3.2 {
);
PRAGMA foreign_key_list(t7);
}
-} [concat \
- {0 0 t5 d a RESTRICT RESTRICT NONE} \
- {0 1 t5 e b RESTRICT RESTRICT NONE} \
+} [concat \
+ {0 0 t5 d a {NO ACTION} {NO ACTION} NONE} \
+ {0 1 t5 e b {NO ACTION} {NO ACTION} NONE} \
]
do_test fkey1-3.3 {
execsql {
« no previous file with comments | « third_party/sqlite/src/test/filefmt.test ('k') | third_party/sqlite/src/test/fkey2.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698