Uh oh!
There was an error while loading. Please reload this page.
[SPARK-13530][SQL] Add ShortType support to UnsafeRowParquetRecordReader - #11412
Closed
viirya wants to merge 1 commit into
Closed
[SPARK-13530][SQL] Add ShortType support to UnsafeRowParquetRecordReader#11412viirya wants to merge 1 commit into
viirya wants to merge 1 commit into
Conversation
SparkQA
commented
Feb 27, 2016
Test build #52117 has finished for PR 11412 at commit
|
viirya
commented
Feb 27, 2016
MemberAuthor
nongli
commented
Feb 27, 2016
Contributor
lgtm |
rxin
commented
Feb 27, 2016
Contributor
Thanks - merging this in master. It would've been better if we could have a unit test for this module, rather than relying on some integration tests. |
JoshRosen
commented
Feb 27, 2016
Contributor
It looks like this may now be failing tests in master? Take a look at https://spark-tests.appspot.com/tests/org.apache.spark.sql.sources.ParquetHadoopFsRelationSuite/test%20all%20data%20types%20-%20ByteType |
viirya
commented
Feb 27, 2016
MemberAuthor
@JoshRosen looks like at the same module but a different problem. I will look at it. |
nongli
commented
Feb 28, 2016
Contributor
viirya
commented
Feb 28, 2016
MemberAuthor
@nongli Got it. Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
JIRA: https://issues.apache.org/jira/browse/SPARK-13530
What changes were proposed in this pull request?
By enabling vectorized parquet scanner by default, the unit test
ParquetHadoopFsRelationSuitebased onHadoopFsRelationTestwill be failed due to the lack of short type support inUnsafeRowParquetRecordReader. We should fix it.The error exception:
How was this patch tested?
The unit test
ParquetHadoopFsRelationSuitebased onHadoopFsRelationTestwill be failed due to the lack of short type support in UnsafeRowParquetRecordReader. By adding this support, the test can be passed.