should be it
This commit is contained in:
15
external/duckdb/test/sql/select/test_select_into.test
vendored
Normal file
15
external/duckdb/test/sql/select/test_select_into.test
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
# name: test/sql/select/test_select_into.test
|
||||
# description: Select INTO
|
||||
# group: [select]
|
||||
|
||||
statement ok
|
||||
CREATE TABLE t (t TEXT);
|
||||
|
||||
statement ok
|
||||
INSERT INTO t VALUES ('foo'), ('bar'), ('baz');
|
||||
|
||||
# unsupported
|
||||
statement error
|
||||
SELECT * INTO t2 FROM t WHERE t LIKE 'b%';
|
||||
----
|
||||
<REGEX>:.*Parser Error.*SELECT INTO not supported.*
|
||||
Reference in New Issue
Block a user