mirror of
https://github.com/apache/impala.git
synced 2026-01-06 06:01:03 -05:00
The sender timed out error message diverges between Thrift and KRPC slightly due to the source address being not readily available with Thrift RPC implementation. This leads to failure in test_exchange_delays when KRPC is enabled. This change fixes the problem by shortening the error message string to match against. Testing done: Tested with KRPC enabled in the code and verified the tests passed. Change-Id: Idd9410381dbb931231c92f084917265e5067b4c9 Reviewed-on: http://gerrit.cloudera.org:8080/9331 Reviewed-by: Sailesh Mukil <sailesh@cloudera.com> Reviewed-by: Tim Armstrong <tarmstrong@cloudera.com> Tested-by: Impala Public Jenkins
12 lines
241 B
Plaintext
12 lines
241 B
Plaintext
====
|
|
---- QUERY
|
|
# IMPALA-5199: Query with zero rows sent over exchange.
|
|
select l_orderkey, count(*)
|
|
from tpch.lineitem
|
|
where l_linenumber = -1
|
|
group by l_orderkey
|
|
---- RESULTS
|
|
---- CATCH
|
|
timed out waiting for receiver fragment instance
|
|
====
|