blob: 09d0912d8dab8b3434774a3327eec14591397d99 [file] [log] [blame]
====
---- QUERY
# IMPALA-9856: We disable query result spooling here because this test expect query to hit
# memory limit during codegen.
SET spool_query_results=false;
set mem_limit=100k;
with t as (values(1), (2), (3), (4)) select min(t1.`1` + t2.`1`) from t t1 join t t2;
---- CATCH
Codegen failed to reserve
---- RUNTIME_PROFILE
row_regex: .*EXEC_SINGLE_NODE_ROWS_THRESHOLD=0.*
====