Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[SPARK-16508][SparkR] Fix warnings on undocumented/duplicated arguments by CRAN-check #14558
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
Uh oh!
There was an error while loading. Please reload this page.
[SPARK-16508][SparkR] Fix warnings on undocumented/duplicated arguments by CRAN-check #14558
Changes from 1 commit
82e2f0941d9dca44115e92d136db901edbb475ee382285de720efb79719ac5f15637f7977fbbfd3a30d21e401358611bc251b1016ea8a1984b434e70ed623633a213fb87ba8f6bf20cdbc683f00fb0149d2c1d64b4047fcbde94cd38378f5a21ecc9750f880e02d0d08f4cacd4503632e5771a12e2c787237ae541c56971022230c6cb3eab3e0163b68a24d322c7660394d5989406f82585d1d991aa5325735b8bec5f1570bc37536d5233e0edfd7de72a6aaafa69edc9cfe433aafaa7315a0ddaa3d23371170e92682719File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
…ed correctly Currently, Spark ignores path names starting with underscore `_` and `.`. This causes read-failures for the column-partitioned file data sources whose partition column names starts from '_', e.g. `_col`. **Before** ```scala scala> spark.range(10).withColumn("_locality_code", $"id").write.partitionBy("_locality_code").save("/tmp/parquet") scala> spark.read.parquet("/tmp/parquet") org.apache.spark.sql.AnalysisException: Unable to infer schema for ParquetFormat at /tmp/parquet20. It must be specified manually; ``` **After** ```scala scala> spark.range(10).withColumn("_locality_code", $"id").write.partitionBy("_locality_code").save("/tmp/parquet") scala> spark.read.parquet("/tmp/parquet") res2: org.apache.spark.sql.DataFrame = [id: bigint, _locality_code: int] ``` Pass the Jenkins with a new test case. Author: Dongjoon Hyun <[email protected]> Closes #14585 from dongjoon-hyun/SPARK-16975-PARQUET. (cherry picked from commit abff92b) Signed-off-by: Cheng Lian <[email protected]>Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing