nchammas commented on PR #44333: URL: https://github.com/apache/spark/pull/44333#issuecomment-1855242821
> CREATE TABLE `tableA`( > s string) > PARTITIONED BY ( > `dt` string COMMENT '日期, yyyyMMdd', > `hour` string COMMENT '小时, HH') Could you update your example with a working reproduction? This create table statement is invalid. It partitions on two columns `dt` and `hour` that do not exist in the column declaration. And the subsequent `select` is also invalid.; it's missing a table name. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
