This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/branch-3.5 by this push:
new b51db8bcf80c [SPARK-49791][SQL][FOLLOWUP][3.5] Fix `import` statement
b51db8bcf80c is described below
commit b51db8bcf80cf070f93a05345640ca594301899d
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Thu Sep 26 14:51:57 2024 -0700
[SPARK-49791][SQL][FOLLOWUP][3.5] Fix `import` statement
### What changes were proposed in this pull request?
This PR is a follow-up for `branch-3.5` due to the difference of `import`
statement.
- #48257
### Why are the changes needed?
To fix the compilation.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #48271 from dongjoon-hyun/SPARK-49791.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
sql/core/src/main/scala/org/apache/spark/sql/DataFrameWriter.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/DataFrameWriter.scala
b/sql/core/src/main/scala/org/apache/spark/sql/DataFrameWriter.scala
index f1664f66b7f8..4c0c750246f8 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/DataFrameWriter.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/DataFrameWriter.scala
@@ -28,7 +28,7 @@ import org.apache.spark.sql.catalyst.catalog._
import org.apache.spark.sql.catalyst.expressions.Literal
import org.apache.spark.sql.catalyst.plans.logical.{AppendData,
CreateTableAsSelect, InsertIntoStatement, LogicalPlan, OptionList,
OverwriteByExpression, OverwritePartitionsDynamic, ReplaceTableAsSelect,
UnresolvedTableSpec}
import org.apache.spark.sql.catalyst.util.CaseInsensitiveMap
-import org.apache.spark.sql.connector.catalog.{CatalogManager, CatalogPlugin,
CatalogV2Implicits, CatalogV2Util, DelegatingCatalogExtension, Identifier,
SupportsCatalogOptions, Table, TableCatalog, TableProvider, V1Table}
+import org.apache.spark.sql.connector.catalog.{CatalogExtension,
CatalogManager, CatalogPlugin, CatalogV2Implicits, CatalogV2Util, Identifier,
SupportsCatalogOptions, Table, TableCatalog, TableProvider, V1Table}
import org.apache.spark.sql.connector.catalog.TableCapability._
import org.apache.spark.sql.connector.catalog.TableWritePrivilege
import org.apache.spark.sql.connector.catalog.TableWritePrivilege._
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]