should be it
This commit is contained in:
18
external/duckdb/test/issues/rigger/test_537.test
vendored
Normal file
18
external/duckdb/test/issues/rigger/test_537.test
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
# name: test/issues/rigger/test_537.test
|
||||
# description: Issue 537
|
||||
# group: [rigger]
|
||||
|
||||
statement ok
|
||||
PRAGMA enable_verification
|
||||
|
||||
# Fetching from table and view results in a crash
|
||||
statement ok
|
||||
CREATE TABLE t0(c0 INT);
|
||||
|
||||
statement ok
|
||||
CREATE VIEW v0 AS SELECT 0, 1 FROM t0 ORDER BY t0.c0;
|
||||
|
||||
query I
|
||||
SELECT t0.c0 FROM t0, v0;
|
||||
----
|
||||
|
||||
Reference in New Issue
Block a user