Steve Carlin created IMPALA-14820:
-------------------------------------
Summary: Calcite planner: Memory allocations too high for various
queries
Key: IMPALA-14820
URL: https://issues.apache.org/jira/browse/IMPALA-14820
Project: IMPALA
Issue Type: Sub-task
Reporter: Steve Carlin
The following two queries have bad memory calculations and the tests are
failing:
In admission-max-min-mem-limits.test
select * from functional_parquet.alltypes limit 1;
In bloom_filters.test
with l as (select * from tpch.lineitem UNION ALL select * from tpch.lineitem)
select STRAIGHT_JOIN count(*) from (select * from tpch.lineitem a LIMIT 1) a
join (select * from l LIMIT 125000) b on a.l_orderkey = -b.l_orderkey;
--
This message was sent by Atlassian Jira
(v8.20.10#820010)