Files
email-tracker/external/duckdb/test/fuzzer/pedro/gcol_stack_overflow.test
2025-10-24 19:21:19 -05:00

31 lines
489 B
SQL

# name: test/fuzzer/pedro/gcol_stack_overflow.test
# group: [pedro]
statement ok
pragma enable_verification
statement ok
CREATE TABLE t0 (c2 AS (c0) VIRTUAL, c0 INT);
statement ok
insert into t0 VALUES(5);
foreach table_alias t0 c0 c2 order_id total_profit amount_sold price "a.b.c"
query I
SELECT 1 FROM t0 as ${table_alias}(c0) WHERE c0 = 0;
----
query I
select 1 from t0 as ${table_alias}(c0);
----
1
query I
select c0 from t0 as ${table_alias}(c0);
----
5
#table_alias
endloop