aboutsummaryrefslogtreecommitdiff
path: root/test/e_expr.test
diff options
context:
space:
mode:
authordrh <>2023-02-18 20:31:26 +0000
committerdrh <>2023-02-18 20:31:26 +0000
commit1603f7edee60b23d91dcce61ff5bbf86b596bc85 (patch)
tree68b483de35fb722d52f0639f60489a148606bdc0 /test/e_expr.test
parent3c7e90b89472f100a5f9608b4899bb801bec465b (diff)
downloadsqlite-1603f7edee60b23d91dcce61ff5bbf86b596bc85.tar.gz
sqlite-1603f7edee60b23d91dcce61ff5bbf86b596bc85.zip
Fix stale requirement marks and fix a typo in the documentation for
sqlite3_preupdate_hook(). FossilOrigin-Name: 655991f5d9afdd3281049eb430921046e0ba90eef215020c2fb149adc0d3c4c5
Diffstat (limited to 'test/e_expr.test')
-rw-r--r--test/e_expr.test9
1 files changed, 5 insertions, 4 deletions
diff --git a/test/e_expr.test b/test/e_expr.test
index 3f8d5ad85..5ad5993bb 100644
--- a/test/e_expr.test
+++ b/test/e_expr.test
@@ -215,7 +215,7 @@ foreach {tn literal type} {
#
# EVIDENCE-OF: R-03679-60639 Equals can be either = or ==.
#
-# EVIDENCE-OF: R-30082-38996 The non-equals operator can be either != or
+# EVIDENCE-OF: R-49372-18364 The not-equal operator can be either != or
# <>.
#
foreach {tn literal different} {
@@ -1892,9 +1892,10 @@ do_expr_test e_expr-35.1.6 {
(SELECT a FROM t2 UNION SELECT COALESCE(b, 55) FROM t2 ORDER BY 1)
} integer 4
-# EVIDENCE-OF: R-22239-33740 A subquery that returns two or more columns
-# is a row value subquery and can only be used as the operand of a
-# comparison operator.
+# EVIDENCE-OF: R-43101-20178 A subquery that returns two or more columns
+# is a row value subquery and can only be used as an operand of a
+# comparison operator or as the value in an UPDATE SET clause whose
+# column name list has the same size.
#
# The following block tests that errors are returned in a bunch of cases
# where a subquery returns more than one column.