aokolnychyi commented on code in PR #50137: URL: https://github.com/apache/spark/pull/50137#discussion_r2006506554
########## sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/CreateTableExec.scala: ########## @@ -43,7 +43,12 @@ case class CreateTableExec( override protected def run(): Seq[InternalRow] = { if (!catalog.tableExists(identifier)) { try { - catalog.createTable(identifier, columns, partitioning.toArray, tableProperties.asJava) + val tableInfo = new TableInfo.Builder() Review Comment: Are there more places that should be migrated? What about CTAS? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org