-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-31234][SQL][FOLLOW-UP] ResetCommand should not affect static SQL Configuration #28265
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
|
|
||
| - The `org.apache.spark.ExecutorPlugin` interface and related configuration has been replaced with | ||
| `org.apache.spark.plugin.SparkPlugin`, which adds new functionality. Plugins using the old | ||
| `org.apache.spark.api.plugin.SparkPlugin`, which adds new functionality. Plugins using the old |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a typo fix.
|
Test build #121489 has finished for PR 28265 at commit
|
|
Yea, the fix looks fine if the relevant test failure fixed. |
|
|
||
| assert(session.sessionState.conf.getConfString("spark.app.name") === "test-app-SPARK-31234") | ||
| assert(session.sessionState.conf.getConf(GLOBAL_TEMP_DATABASE) === "globalTempDB-SPARK-31234") | ||
| assert(session.sessionState.conf.getConf(GLOBAL_TEMP_DATABASE) === "globaltempdb-spark-31234") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This difference between Spark 2.4 and Spark 3.0 is caused by #24979
|
cc @cloud-fan |
|
LGTM |
|
Test build #121501 has finished for PR 28265 at commit
|
|
retest this please |
|
Test build #121506 has finished for PR 28265 at commit
|
|
retest this please |
|
Test build #121529 has finished for PR 28265 at commit
|
…QL Configuration ### What changes were proposed in this pull request? This PR is the follow-up PR of #28003 - add a migration guide - add an end-to-end test case. ### Why are the changes needed? The original PR made the major behavior change in the user-facing RESET command. ### Does this PR introduce any user-facing change? No ### How was this patch tested? Added a new end-to-end test Closes #28265 from gatorsmile/spark-31234followup. Authored-by: gatorsmile <[email protected]> Signed-off-by: gatorsmile <[email protected]> (cherry picked from commit 6c792a7) Signed-off-by: gatorsmile <[email protected]>
|
Thanks! Merged to master and 3.0 |
What changes were proposed in this pull request?
This PR is the follow-up PR of #28003
Why are the changes needed?
The original PR made the major behavior change in the user-facing RESET command.
Does this PR introduce any user-facing change?
No
How was this patch tested?
Added a new end-to-end test