strongduanmu edited a comment on issue #11794: URL: https://github.com/apache/shardingsphere/issues/11794#issuecomment-918938050
Since date is a keyword in calcite parsing, and calcite does not process the keywords, it causes parsing exceptions. Using quotation marks or rename can temporarily avoid this problem. Later, calcite parsing will be skipped and shardingsphere parsing will be used directly. ```sql select s.content from t_single s inner join t_order_test t ON s.single_id = t.test_id WHERE 'date' = '2021-09-14'; ``` -- 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]
