From 5beeba8432e0af2cd3a5d5e8a7633ee5705872ba Mon Sep 17 00:00:00 2001 From: Alessandro Bellina Date: Wed, 11 Sep 2024 20:44:43 -0500 Subject: [PATCH] Skip test_hash_groupby_approx_percentile byte and double tests temporarily (#11469) Signed-off-by: Alessandro Bellina --- integration_tests/src/main/python/hash_aggregate_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integration_tests/src/main/python/hash_aggregate_test.py b/integration_tests/src/main/python/hash_aggregate_test.py index 734b4dfb708..ef523641435 100644 --- a/integration_tests/src/main/python/hash_aggregate_test.py +++ b/integration_tests/src/main/python/hash_aggregate_test.py @@ -1710,6 +1710,7 @@ def test_hash_groupby_approx_percentile_reduction_no_rows(aqe_enabled): [0.05, 0.25, 0.5, 0.75, 0.95], conf, reduction = True) @incompat +@pytest.mark.skip(reason="https://github.com/NVIDIA/spark-rapids/issues/11463") @pytest.mark.parametrize('aqe_enabled', ['false', 'true'], ids=idfn) def test_hash_groupby_approx_percentile_byte(aqe_enabled): conf = {'spark.sql.adaptive.enabled': aqe_enabled} @@ -1719,6 +1720,7 @@ def test_hash_groupby_approx_percentile_byte(aqe_enabled): [0.05, 0.25, 0.5, 0.75, 0.95], conf) @incompat +@pytest.mark.skip(reason="https://github.com/NVIDIA/spark-rapids/issues/11463") @disable_ansi_mode # https://github.com/NVIDIA/spark-rapids/issues/11198 @pytest.mark.parametrize('aqe_enabled', ['false', 'true'], ids=idfn) def test_hash_groupby_approx_percentile_byte_scalar(aqe_enabled): @@ -1775,6 +1777,7 @@ def test_hash_groupby_approx_percentile_long_single_ansi(aqe_enabled): @incompat +@pytest.mark.skip(reason="https://github.com/NVIDIA/spark-rapids/issues/11463") @pytest.mark.parametrize('aqe_enabled', ['false', 'true'], ids=idfn) def test_hash_groupby_approx_percentile_double(aqe_enabled): conf = {'spark.sql.adaptive.enabled': aqe_enabled} @@ -1784,6 +1787,7 @@ def test_hash_groupby_approx_percentile_double(aqe_enabled): [0.05, 0.25, 0.5, 0.75, 0.95], conf) @incompat +@pytest.mark.skip(reason="https://github.com/NVIDIA/spark-rapids/issues/11463") @pytest.mark.parametrize('aqe_enabled', ['false', 'true'], ids=idfn) def test_hash_groupby_approx_percentile_double_single(aqe_enabled): conf = {'spark.sql.adaptive.enabled': aqe_enabled}