diff --git a/core/src/main/scala/org/apache/spark/sql/delta/commands/ShowCreateTableCommand.scala b/core/src/main/scala/org/apache/spark/sql/delta/commands/ShowCreateTableCommand.scala index d05dee1e7b0..edb5a3df0c2 100644 --- a/core/src/main/scala/org/apache/spark/sql/delta/commands/ShowCreateTableCommand.scala +++ b/core/src/main/scala/org/apache/spark/sql/delta/commands/ShowCreateTableCommand.scala @@ -34,6 +34,7 @@ import scala.collection.mutable.ArrayBuffer /** * A command for describing the details of a table such as the format, name, and size. + * Implementation partially reused from https://github.com/apache/spark/blob/branch-3.3/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/ShowCreateTableExec.scala */ case class ShowCreateTableCommand(table: Option[TableIdentifier]) extends LeafRunnableCommand with DeltaCommand {