We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56983d commit 07bed19Copy full SHA for 07bed19
testing/values.test
@@ -60,4 +60,13 @@ do_execsql_test_on_specific_db {:memory:} values-between {
60
do_execsql_test_in_memory_any_error values-illegal-column-ref {
61
CREATE TABLE t0 (c0);
62
INSERT INTO t0 VALUES (c0);
63
-}
+}
64
+
65
+# Unquoted identifiers in VALUES should produce a parse error
66
+do_execsql_test_in_memory_error_content values-unquoted-identifier-single {
67
+ values(asdf);
68
+} {Parse error: Unquoted identifier in VALUES clause: asdf}
69
70
+do_execsql_test_in_memory_error_content values-unquoted-identifier-mixed {
71
+ values(1, asdf);
72
0 commit comments