From 5c51a99bdd518fdea5159de62994da0823c86c6d Mon Sep 17 00:00:00 2001 From: Kaiqi Jin Date: Fri, 28 Feb 2025 15:32:21 -0800 Subject: [PATCH] [uniform]fix import order (#4204) #### Which Delta project/connector is this regarding? - [x] Spark - [ ] Standalone - [ ] Flink - [ ] Kernel - [ ] Other (fill in here) ## Description as the title says. ## How was this patch tested? ## Does this PR introduce _any_ user-facing changes? --- .../sql/delta/icebergShaded/IcebergTransactionUtils.scala | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/iceberg/src/main/scala/org/apache/spark/sql/delta/icebergShaded/IcebergTransactionUtils.scala b/iceberg/src/main/scala/org/apache/spark/sql/delta/icebergShaded/IcebergTransactionUtils.scala index 81d4b5bc393..5582ca7132e 100644 --- a/iceberg/src/main/scala/org/apache/spark/sql/delta/icebergShaded/IcebergTransactionUtils.scala +++ b/iceberg/src/main/scala/org/apache/spark/sql/delta/icebergShaded/IcebergTransactionUtils.scala @@ -35,12 +35,9 @@ import shadedForDelta.org.apache.iceberg.{DataFile, DataFiles, FileFormat, Parti import shadedForDelta.org.apache.iceberg.Metrics import shadedForDelta.org.apache.iceberg.StructLike import shadedForDelta.org.apache.iceberg.TableProperties -import shadedForDelta.org.apache.iceberg.util.DateTimeUtil - -// scalastyle:off import.ordering.noEmptyLine import shadedForDelta.org.apache.iceberg.catalog.{Namespace, TableIdentifier => IcebergTableIdentifier} -// scalastyle:on import.ordering.noEmptyLine import shadedForDelta.org.apache.iceberg.hive.HiveCatalog +import shadedForDelta.org.apache.iceberg.util.DateTimeUtil import org.apache.spark.sql.catalyst.{InternalRow, TableIdentifier => SparkTableIdentifier} import org.apache.spark.sql.types.{BinaryType, BooleanType, ByteType, DataType, DateType, DecimalType, DoubleType, FloatType, IntegerType, LongType, ShortType, StringType, StructType, TimestampNTZType, TimestampType}