Quanlong Huang created IMPALA-15003:
---------------------------------------
Summary: test_cancelled_nodes_in_exec_summary fails on list index
out of range
Key: IMPALA-15003
URL: https://issues.apache.org/jira/browse/IMPALA-15003
Project: IMPALA
Issue Type: Bug
Components: Test
Reporter: Quanlong Huang
Assignee: Quanlong Huang
test_cancelled_nodes_in_exec_summary fails on Ozone erasure-coding builds:
*Error Message*
IndexError: list index out of range
*Stacktrace*
{code:python}
query_test/test_observability.py:223: in test_cancelled_nodes_in_exec_summary
assert result.exec_summary[15]['operator'] == '00:' + scan_op,
result.runtime_profile
E IndexError: list index out of range
query = '\n with l as (select * from tpch.lineitem UNION
ALL select * from tpch.lineitem)\n select STRAIGHT_JOIN...e l_orderkey =
1) a\n join\n (select * from l LIMIT 125000) b\n on
a.l_orderkey = -b.l_orderkey'
result = <tests.common.impala_connection.ImpylaHS2ResultSet object
at 0x7f1b465302d0>
scan_op = 'SCAN OZONE'
self = <test_observability.TestObservability object at
0x7f1b4707f410>{code}
The query is
{code:sql}
with l as (select * from tpch.lineitem UNION ALL select * from
tpch.lineitem)
select STRAIGHT_JOIN count(*) from
(select * from tpch.lineitem a where l_orderkey = 1) a
join
(select * from l LIMIT 125000) b
on a.l_orderkey = -b.l_orderkey;{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)