should be it
This commit is contained in:
14
external/duckdb/test/sql/copy/csv/except.test
vendored
Normal file
14
external/duckdb/test/sql/copy/csv/except.test
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# name: test/sql/copy/csv/except.test
|
||||
# description: Test Except works when one of the children is a CSV File
|
||||
# group: [csv]
|
||||
|
||||
statement ok
|
||||
PRAGMA enable_verification
|
||||
|
||||
statement ok
|
||||
COPY (SELECT 1 a, 2 b) TO '__TEST_DIR__/mismatch_types_except.csv';
|
||||
|
||||
query II
|
||||
FROM '__TEST_DIR__/mismatch_types_except.csv' EXCEPT select 'bla' as a, 1 as b;
|
||||
----
|
||||
1 2
|
||||
Reference in New Issue
Block a user