Skip to content

Commit ad971b6

Browse files
committed
[MINOR][SQL] Fix typo in CTAS plan argString
``` scala> sql("create table t as select 1").explain == Physical Plan == ExecutedCommand CreateTableAsSelect [Database:default}, TableName: t, InsertIntoHiveTable] +- Project [1 AS _c0#3] +- OneRowRelation$ scala> sc.version res1: String = 1.6.0 ```
1 parent d279204 commit ad971b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/main/scala/org/apache/spark/sql/hive/execution/CreateHiveTableAsSelectCommand.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ case class CreateHiveTableAsSelectCommand(
9696
}
9797

9898
override def argString: String = {
99-
s"[Database:${tableDesc.database}}, " +
99+
s"[Database:${tableDesc.database}, " +
100100
s"TableName: ${tableDesc.identifier.table}, " +
101101
s"InsertIntoHiveTable]"
102102
}

0 commit comments

Comments
 (0)