This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 9b48f33 [SPARK-31045][SQL][FOLLOWUP][3.0] Fix build due to divergence
between master and 3.0
9b48f33 is described below
commit 9b48f3358d3efb523715a5f258e5ed83e28692f6
Author: Jungtaek Lim (HeartSaVioR) <[email protected]>
AuthorDate: Thu Mar 5 21:31:08 2020 -0800
[SPARK-31045][SQL][FOLLOWUP][3.0] Fix build due to divergence between
master and 3.0
### What changes were proposed in this pull request?
This patch fixes the build failure in `branch-3.0` due to cherry-picking
SPARK-31045 to branch-3.0, as `.version()` is not available in `branch-3.0` yet.
### Why are the changes needed?
The build is failing in `branch-3.0`.
### Does this PR introduce any user-facing change?
No.
### How was this patch tested?
Jenkins build will verify.
Closes #27826 from HeartSaVioR/SPARK-31045-branch-3.0-FOLLOWUP.
Authored-by: Jungtaek Lim (HeartSaVioR) <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala | 1 -
1 file changed, 1 deletion(-)
diff --git
a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
index cd465bc..fdaf0ec 100644
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
@@ -382,7 +382,6 @@ object SQLConf {
.internal()
.doc("Configures the log level for adaptive execution logging of plan
changes. The value " +
"can be 'trace', 'debug', 'info', 'warn', or 'error'. The default log
level is 'debug'.")
- .version("3.0.0")
.stringConf
.transform(_.toUpperCase(Locale.ROOT))
.checkValues(Set("TRACE", "DEBUG", "INFO", "WARN", "ERROR"))
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]