Skip to content

Commit 82dcf5d

Browse files
Merge branch 'main' into regex-inline-flags
2 parents c5a606a + b887acb commit 82dcf5d

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

integration_tests/src/main/python/json_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ def test_from_json_struct_decimal():
10721072
# integral
10731073
pytest.param("[0-9]{1,5}", marks=pytest.mark.xfail(reason="https://github.com/NVIDIA/spark-rapids/issues/9664")),
10741074
# floating-point
1075-
"[0-9]{0,2}\\.[0-9]{1,2}"
1075+
"[0-9]{0,2}\\.[0-9]{1,2}",
10761076
# boolean
10771077
"(true|false)"
10781078
])
@@ -1146,7 +1146,7 @@ def test_from_json_struct_date_fallback_non_default_format(date_gen, date_format
11461146
pytest.param("[0-9]{1,5}", marks=pytest.mark.xfail(reason="https://github.com/NVIDIA/spark-rapids/issues/4940")),
11471147
pytest.param("[1-9]{1,8}", marks=pytest.mark.xfail(reason="https://github.com/NVIDIA/spark-rapids/issues/4940")),
11481148
# floating-point
1149-
r"[0-9]{0,2}\.[0-9]{1,2}"
1149+
r"[0-9]{0,2}\.[0-9]{1,2}",
11501150
# boolean
11511151
"(true|false)"
11521152
])

integration_tests/src/main/python/prune_partition_column_test.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2022-2023, NVIDIA CORPORATION.
1+
# Copyright (c) 2022-2026, NVIDIA CORPORATION.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -26,8 +26,7 @@
2626
part1_gen = SetValuesGen(IntegerType(), [-10, -1, 0, 1, 10])
2727
part2_gen = SetValuesGen(LongType(), [-100, 0, 100])
2828

29-
file_formats = ['parquet', 'orc', 'csv',
30-
pytest.param('json', marks=pytest.mark.xfail(reason='https://github.com/NVIDIA/spark-rapids/issues/7446'))]
29+
file_formats = ['parquet', 'orc', 'csv', 'json']
3130
if os.environ.get('INCLUDE_SPARK_AVRO_JAR', 'false') == 'true':
3231
file_formats = file_formats + ['avro']
3332

0 commit comments

Comments
 (0)