-
Notifications
You must be signed in to change notification settings - Fork 29.3k
[SPARK-27938][SQL] Remove feature flag LEGACY_PASS_PARTITION_BY_AS_OPTIONS #24784
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1718,7 +1718,7 @@ object SQLConf { | |
| "Data source V1 now silently drops partitionBy columns for non-file-format sources; " + | ||
| "turning the flag on provides a way for these sources to see these partitionBy columns.") | ||
| .booleanConf | ||
| .createWithDefault(false) | ||
| .createWithDefault(true) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, why do we need this configuration if it's not invasive?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it was to avoid possible regression for the release 2.4.3, which was reasonable at that time.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not intrusive then should be no regression strictly though. Yea but I got that it was an extra caution. Can we remove it now in master?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agree, we should be removing these in 3.0 rather than defaulting back to legacy behavior.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good to me. I will go ahead and remove this feature flag altogether if no objections.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. cc @gatorsmile
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 |
||
|
|
||
| val NAME_NON_STRUCT_GROUPING_KEY_AS_VALUE = | ||
| buildConf("spark.sql.legacy.dataset.nameNonStructGroupingKeyAsValue") | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.