cloud-fan commented on code in PR #49103: URL: https://github.com/apache/spark/pull/49103#discussion_r1910006494
########## sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/rules.scala: ########## @@ -295,6 +296,8 @@ case class PreprocessTableCreation(catalog: SessionCatalog) extends Rule[Logical c.copy(tableDesc = normalizedTable, query = Some(reorderedQuery)) } else { DDLUtils.checkTableColumns(tableDesc) + SchemaUtils.checkIndeterminateCollationInSchema(tableDesc.schema) Review Comment: We don't need to check it here as CREATE TABLE can't produce indeterminate collation, only CTAS can. -- 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