should be it
This commit is contained in:
14
external/duckdb/test/sql/pivot/unpivot_no_columns.test
vendored
Normal file
14
external/duckdb/test/sql/pivot/unpivot_no_columns.test
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# name: test/sql/pivot/unpivot_no_columns.test
|
||||
# description: Test UNPIVOT without columns
|
||||
# group: [pivot]
|
||||
|
||||
statement ok
|
||||
PRAGMA enable_verification
|
||||
|
||||
statement ok
|
||||
create table integers(i integer);
|
||||
|
||||
statement error
|
||||
unpivot integers on columns(* exclude (i));
|
||||
----
|
||||
UNPIVOT clause must unpivot on at least one column
|
||||
Reference in New Issue
Block a user