19 lines
323 B
SQL
19 lines
323 B
SQL
# 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;
|
|
----
|
|
|