Skip to content

Commit

Permalink
xfail approximate percentile test
Browse files Browse the repository at this point in the history
  • Loading branch information
razajafri committed Nov 12, 2023
1 parent 9482ba0 commit 0a7fa52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration_tests/src/main/python/hash_aggregate_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from pyspark.sql.types import *
from marks import *
import pyspark.sql.functions as f
from spark_session import is_databricks104_or_later, with_cpu_session, is_before_spark_330
from spark_session import is_databricks104_or_later, with_cpu_session, is_before_spark_330, is_databricks_runtime, is_spark_340_or_later

pytestmark = pytest.mark.nightly_resource_consuming_test

Expand Down Expand Up @@ -1652,6 +1652,7 @@ def test_hash_groupby_approx_percentile_double_single(aqe_enabled):
@ignore_order(local=True)
@allow_non_gpu('TakeOrderedAndProjectExec', 'Alias', 'Cast', 'ObjectHashAggregateExec', 'AggregateExpression',
'ApproximatePercentile', 'Literal', 'ShuffleExchangeExec', 'HashPartitioning', 'CollectLimitExec')
@pytest.mark.xfail(condition=is_spark_340_or_later() and is_databricks_runtime(), reason="https://github.com/NVIDIA/spark-rapids/issues/9493")
def test_hash_groupby_approx_percentile_partial_fallback_to_cpu(aqe_enabled):
conf = {
'spark.rapids.sql.hashAgg.replaceMode': 'partial',
Expand Down

0 comments on commit 0a7fa52

Please sign in to comment.