aboutsummaryrefslogtreecommitdiff
path: root/test/insert4.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/insert4.test')
-rw-r--r--test/insert4.test5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/insert4.test b/test/insert4.test
index 889d5e780..3eece87e5 100644
--- a/test/insert4.test
+++ b/test/insert4.test
@@ -560,5 +560,10 @@ do_test insert4-8.25 {
}
} {1 3}
+do_catchsql_test insert4-9.1 {
+ DROP TABLE IF EXISTS t1;
+ CREATE TABLE t1(x);
+ INSERT INTO t1(x) VALUES(5 COLLATE xyzzy) UNION SELECT 0;
+} {1 {no such collation sequence: xyzzy}}
finish_test