-
Notifications
You must be signed in to change notification settings - Fork 914
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
Bump Spark 4.0.0-preview2 #6699
Conversation
@@ -102,7 +102,7 @@ object SparkCatalogUtils extends Logging { | |||
private def getGlobalTempViewManager( | |||
spark: SparkSession, | |||
schemaPattern: String): Seq[String] = { | |||
val database = spark.sharedState.globalTempViewManager.database | |||
val database = spark.conf.get("spark.sql.globalTempDatabase") |
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.
see SPARK-48559
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #6699 +/- ##
======================================
Coverage 0.00% 0.00%
======================================
Files 684 684
Lines 42279 42279
Branches 5765 5765
======================================
Misses 42279 42279
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -263,7 +263,7 @@ object SparkSQLEngine extends Logging { | |||
// "Cannot mutate ReadOnlySQLConf" exception when task calling HiveResult.getBinaryFormatter. | |||
// Here we follow the HiveResult.getBinaryFormatter behavior to set it to UTF8 if configuration | |||
// is absent to reserve the legacy behavior for compatibility. | |||
_sparkConf.setIfMissing("spark.sql.binaryOutputStyle", "UTF8") | |||
_sparkConf.setIfMissing("spark.sql.binaryOutputStyle", "UTF-8") |
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.
Spark 4.0.0-preview2 RC1 passed the vote https://lists.apache.org/thread/4ctj2mlgs4q2yb4hdw2jy4z34p5yw2b1 - [ ] Bugfix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) Pass GHA. --- - [x] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6699 from pan3793/spark-4.0.0-preview2. Closes #6699 2db1f64 [Cheng Pan] 4.0.0-preview2 42055bb [Cheng Pan] fix d29c0ef [Cheng Pan] disable delta test 98d323b [Cheng Pan] fix 2e782c0 [Cheng Pan] log4j-slf4j2-impl fde4bb6 [Cheng Pan] spark-4.0.0-preview2 Authored-by: Cheng Pan <[email protected]> Signed-off-by: Cheng Pan <[email protected]> (cherry picked from commit 1bfc8c5) Signed-off-by: Cheng Pan <[email protected]>
Thanks, merged to master/1.9 |
🔍 Description
Spark 4.0.0-preview2 RC1 passed the vote
https://lists.apache.org/thread/4ctj2mlgs4q2yb4hdw2jy4z34p5yw2b1
Types of changes 🔖
Test Plan 🧪
Pass GHA.
Checklist 📝
Be nice. Be informative.