-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stop double closing in json scan + skip test #8413
Stop double closing in json scan + skip test #8413
Conversation
Signed-off-by: Alessandro Bellina <[email protected]>
build |
1 similar comment
build |
sql-plugin/src/main/scala/org/apache/spark/sql/catalyst/json/rapids/GpuJsonScan.scala
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small nit, lgtm.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same nit.
build |
…into stop_double_closing_in_json_scan
…a/spark-rapids into stop_double_closing_in_json_scan
build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -436,6 +436,7 @@ def test_json_datetime_parsing_fallback_no_datetime(std_input_path, filename, sc | |||
lambda spark : spark.read.schema(schema).option('enableDateTimeParsingFallback', "true").json(data_path), | |||
conf=_enable_all_types_conf) | |||
|
|||
@pytest.mark.skip(reason=str("https://github.com/NVIDIA/spark-rapids/issues/8403")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Other usages in our repo do not require str()
conversion for a literal reason
Closes: #8411
Stops a double close on exception in
GpuJsonScan
.Skips
test_read_case_col_names
due to #8403, while we investigate further.