Uh oh!
There was an error while loading. Please reload this page.
[SPARK-23094][SPARK-23723][SPARK-23724][SQL][FOLLOW-UP] Support custom encoding for json files - #21254
[SPARK-23094][SPARK-23723][SPARK-23724][SQL][FOLLOW-UP] Support custom encoding for json files#21254gatorsmile wants to merge 2 commits into
Conversation
gatorsmile
commented
May 7, 2018
cc @MaxGekk@HyukjinKwon Do we have any behavior change after the previous PR: #20937? |
Nope, I am quite sure that we don't have any kind of hidden behaviour change. Both |
HyukjinKwon
left a comment
There was a problem hiding this comment.
adding the test seems ok if you feel in that way. this might have to be removed soon within the next release since we should allow this case anyway.
| withTempPath { path => | ||
| val ds = spark.createDataset(Seq( | ||
| ("a", 1), ("b", 2), ("c", 3)) | ||
| ).repartition(2) |
There was a problem hiding this comment.
we don't have to repartition though.
SparkQA
commented
May 7, 2018
Test build #90292 has finished for PR 21254 at commit
|
MaxGekk
commented
May 7, 2018
The PR brought the As @HyukjinKwon wrote above the PR #21247 eliminates restrictions in write but the restrictions don't break previous behavior (before #20937) in any case. |
HyukjinKwon
commented
May 8, 2018
retest this please |
SparkQA
commented
May 8, 2018
Test build #90347 has finished for PR 21254 at commit
|
HyukjinKwon
commented
May 8, 2018
Merged to master. |
What changes were proposed in this pull request?
This is to add a test case to check the behaviors when users write json in the specified UTF-16/UTF-32 encoding with multiline off.
How was this patch tested?
N/A