From 5ee2db390d2ec7da10f5c6b0a5e88b0af8fc6daf Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Wed, 31 Jan 2024 17:25:11 -0700 Subject: [PATCH 1/2] use fixed seed for test_from_json_struct_decimal --- integration_tests/src/main/python/json_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/integration_tests/src/main/python/json_test.py b/integration_tests/src/main/python/json_test.py index 78537eb5fb3..426f3d6657b 100644 --- a/integration_tests/src/main/python/json_test.py +++ b/integration_tests/src/main/python/json_test.py @@ -627,6 +627,7 @@ def test_from_json_struct_boolean(pattern): conf={"spark.rapids.sql.expression.JsonToStructs": True}) @allow_non_gpu(*non_utc_allow) +@datagen_overrides(seed=0, reason='https://github.com/NVIDIA/spark-rapids/issues/10349') def test_from_json_struct_decimal(): json_string_gen = StringGen(r'{ "a": "[+-]?([0-9]{0,5})?(\.[0-9]{0,2})?([eE][+-]?[0-9]{1,2})?" }') \ .with_special_pattern('', weight=50) \ From 2adf85ec232e2db6106796602685143f1d408e75 Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Wed, 31 Jan 2024 17:25:37 -0700 Subject: [PATCH 2/2] signoff Signed-off-by: Andy Grove