Skip to content

Commit

Permalink
Also fix NVIDIA#11531.
Browse files Browse the repository at this point in the history
  • Loading branch information
mythrocks committed Oct 4, 2024
1 parent b712c2d commit 1812ead
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions integration_tests/src/main/python/parquet_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1381,8 +1381,9 @@ def test_parquet_nested_column_missing(spark_tmp_path, reader_confs, v1_enabled_
lambda spark: spark.read.schema(read_schema).parquet(data_path),
conf=conf)


@pytest.mark.skipif(condition=not is_before_spark_400(),
@pytest.mark.skipif(condition=is_databricks_runtime() and is_databricks_version_or_later(14,3),
reason="https://github.com/NVIDIA/spark-rapids/issues/11512")
@pytest.mark.skipif(condition=is_spark_400_or_later(),
reason="https://github.com/NVIDIA/spark-rapids/issues/11512")
def test_parquet_check_schema_compatibility(spark_tmp_path):
data_path = spark_tmp_path + '/PARQUET_DATA'
Expand Down

0 comments on commit 1812ead

Please sign in to comment.