Joe McDonnell created IMPALA-13939:
--------------------------------------
Summary: targeted-perf's primitive_cancel_union fails at scale>1
Key: IMPALA-13939
URL: https://issues.apache.org/jira/browse/IMPALA-13939
Project: IMPALA
Issue Type: Task
Components: Infrastructure
Affects Versions: Impala 5.0.0
Reporter: Joe McDonnell
targeted-perf's primitive_cancel_union has a direct reference to the
tpch_parquet database:
{noformat}
select * from (
select c_custkey key, min(c_name)
from tpch_parquet.customer
where c_custkey <= 10
group by c_custkey
union all
select l_orderkey, min(l_comment)
from tpch_parquet.lineitem
group by l_orderkey) v
limit 10{noformat}
[https://github.com/apache/impala/blob/506a303c6d48fd5d0653cdfd58b3ae419328ff31/testdata/workloads/targeted-perf/queries/primitive_cancel_union.test]
This can't work with other scale factors, because the database name changes
(e.g. tpch42_parquet). We should change this to avoid the database reference
(i.e. 'customer' rather than 'tpch_parquet.customer'). This is how the other
targeted-perf tests work.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)