This is an automated email from the ASF dual-hosted git repository. wzhou pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 444fedbfda6a8527d2136f4afe1a839cf278e2b5 Author: Qifan Chen <[email protected]> AuthorDate: Wed Sep 22 12:54:28 2021 -0400 IMPALA-10927 TestFetchAndSpooling.test_rows_sent_counters is flaky in core-s3 based test This fix removes the flakiness for test_rows_sent_counters test by disabling it in S3 testing environment. Testing: 1. Unit test in a non-S3 environment; 2. Ran core test successfully. Change-Id: Ie6f1a8bc80c24c1368282be097aa8f943dd95d1e Reviewed-on: http://gerrit.cloudera.org:8080/17862 Reviewed-by: Wenzhe Zhou <[email protected]> Tested-by: Qifan Chen <[email protected]> --- tests/query_test/test_fetch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/query_test/test_fetch.py b/tests/query_test/test_fetch.py index 90db9e8..94b667a 100644 --- a/tests/query_test/test_fetch.py +++ b/tests/query_test/test_fetch.py @@ -19,6 +19,7 @@ import re from time import sleep from tests.common.impala_test_suite import ImpalaTestSuite +from tests.common.skip import SkipIfS3 from tests.common.test_dimensions import extend_exec_option_dimension from tests.util.parse_util import parse_duration_string_ms @@ -68,6 +69,7 @@ class TestFetch(ImpalaTestSuite): self.client.close_query(handle) [email protected]_listing_times class TestFetchAndSpooling(ImpalaTestSuite): """Tests that apply when result spooling is enabled or disabled."""
