Index: third_party/sqlite/src/test/e_insert.test |
diff --git a/third_party/sqlite/src/test/e_insert.test b/third_party/sqlite/src/test/e_insert.test |
index 0ea4b76bb529a2008bea4c1205807f33ec19bd34..32d75cbbd7269e8285ccc13042da5eaa289a539b 100644 |
--- a/third_party/sqlite/src/test/e_insert.test |
+++ b/third_party/sqlite/src/test/e_insert.test |
@@ -157,9 +157,9 @@ do_insert_tests e_insert-1.1 { |
3b "SELECT count(*) FROM a2" {4} |
} |
-# EVIDENCE-OF: R-53616-44976 If no column-list is specified then the |
-# number of values inserted into each row must be the same as the number |
-# of columns in the table. |
+# EVIDENCE-OF: R-19218-01018 If the column-name list after table-name is |
+# omitted then the number of values inserted into each row must be the |
+# same as the number of columns in the table. |
# |
# A test in the block above verifies that if the VALUES list has the |
# correct number of columns (for table a2, 3 columns) works. So these |
@@ -191,9 +191,9 @@ do_insert_tests e_insert-1.3 { |
3b "SELECT * FROM a2 WHERE oid=last_insert_rowid()" {2 x y} |
} |
-# EVIDENCE-OF: R-09234-17933 If a column-list is specified, then the |
-# number of values in each term of the VALUE list must match the number |
-# of specified columns. |
+# EVIDENCE-OF: R-21115-58321 If a column-name list is specified, then |
+# the number of values in each term of the VALUE list must match the |
+# number of specified columns. |
# |
do_insert_tests e_insert-1.4 -error { |
%d values for %d columns |
@@ -348,9 +348,9 @@ do_insert_tests e_insert-3.2 { |
6.2 "SELECT * FROM a1" {{} {} {} {}} |
} |
-# EVIDENCE-OF: R-46928-50290 The optional conflict-clause allows the |
-# specification of an alternative constraint conflict resolution |
-# algorithm to use during this one INSERT command. |
+# EVIDENCE-OF: R-03235-45250 The "REPLACE" and "INSERT OR action" forms |
+# specify an alternative constraint conflict resolution algorithm to use |
+# during this one INSERT command. |
# |
# EVIDENCE-OF: R-23110-47146 the parser allows the use of the single |
# keyword REPLACE as an alias for "INSERT OR REPLACE". |
@@ -394,8 +394,8 @@ foreach {tn sql error ac data } { |
do_test e_insert-4.1.$tn.3 {sqlite3_get_autocommit db} $ac |
} |
-# EVIDENCE-OF: R-64196-02418 The optional "database-name." prefix on the |
-# table-name is support for top-level INSERT statements only. |
+# EVIDENCE-OF: R-59829-49719 The optional "schema-name." prefix on the |
+# table-name is supported for top-level INSERT statements only. |
# |
# EVIDENCE-OF: R-05731-00924 The table name must be unqualified for |
# INSERT statements that occur within CREATE TRIGGER statements. |