wangyum commented on PR #41332: URL: https://github.com/apache/spark/pull/41332#issuecomment-1590223150
@puchengy Could you guarantee that the result returned by the following query is correct? ```sql CREATE TABLE t1(id int) PARTITIONED BY (dt string); insert into t1 partition(dt = '2023-1-01') select 1; insert into t1 partition(dt = '2023-01-02') select 2; select * from t1 where dt = date '2023-01-01'; ``` -- 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]
