-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-9095] [SQL] Removes the old Parquet support #7441
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
Conversation
|
Test build #37493 has finished for PR 7441 at commit
|
|
retest this please |
|
Test build #37936 has finished for PR 7441 at commit
|
|
Test build #37944 has finished for PR 7441 at commit
|
ba9b3da to
dc93730
Compare
|
Test build #38071 has finished for PR 7441 at commit
|
|
Test build #38070 has finished for PR 7441 at commit
|
|
Test build #1170 has finished for PR 7441 at commit
|
|
retest this please |
|
Test build #38164 has finished for PR 7441 at commit
|
|
cc @marmbrus |
|
Test build #38458 has finished for PR 7441 at commit
|
|
Thanks - I've merged this. |
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.