Uh oh!
There was an error while loading. Please reload this page.
[SPARK-9095] [SQL] Removes the old Parquet support - #7441
Closed
liancheng wants to merge 3 commits into
Closed
Conversation
SparkQA
commented
Jul 16, 2015
Test build #37493 has finished for PR 7441 at commit
|
liancheng
commented
Jul 21, 2015
ContributorAuthor
retest this please |
SparkQA
commented
Jul 21, 2015
Test build #37936 has finished for PR 7441 at commit
|
2 tasks
SparkQA
commented
Jul 21, 2015
Test build #37944 has finished for PR 7441 at commit
|
lianchengforce-pushed
the
spark-9095
branch
2 times, most recently
from
July 22, 2015 11:18
ba9b3da to
dc93730CompareSparkQA
commented
Jul 22, 2015
Test build #38071 has finished for PR 7441 at commit
|
SparkQA
commented
Jul 22, 2015
Test build #38070 has finished for PR 7441 at commit
|
SparkQA
commented
Jul 22, 2015
Test build #1170 has finished for PR 7441 at commit
|
liancheng
commented
Jul 23, 2015
ContributorAuthor
retest this please |
SparkQA
commented
Jul 23, 2015
Test build #38164 has finished for PR 7441 at commit
|
liancheng
commented
Jul 23, 2015
ContributorAuthor
cc @marmbrus |
SparkQA
commented
Jul 26, 2015
Test build #38458 has finished for PR 7441 at commit
|
2 tasks
rxin
commented
Jul 26, 2015
Contributor
Thanks - I've merged this. |
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.
This PR removes the old Parquet support:
Removes the old
ParquetRelationtogether with related SQL configuration, plan nodes, strategies, utility classes, and test suites.Renames
ParquetRelation2toParquetRelationRenames
RowReadSupportandRowRecordMaterializertoCatalystReadSupportandCatalystRecordMaterializerrespectively, and moved them to separate files.This follows naming convention used in other Parquet data models implemented in parquet-mr. It should be easier for developers who are familiar with Parquet to follow.
There's still some other code that can be cleaned up. Especially
RowWriteSupport. But I'd like to leave this part to SPARK-8848.