xushiyan opened a new issue, #165: URL: https://github.com/apache/hudi-rs/issues/165
### Is there an existing issue for this? - [X] I have searched the existing issues ### Description of the bug Partition filter currently works for `foo > A` for string field. To match sql syntax, it should be `foo > 'A'`. But current logic won't trim the single quotes and take `'A'` as a whole for the value. Similarly for date types, it should parse `date = '2020-01-01'` correctly. ### Steps To Reproduce Run with partition filters like `foo > A` for a string field, and `date = '2020-01-01'` for a date field. ### Expected behavior Single quotes should be stripped for applicable field types. ### Screenshots / Logs _No response_ ### Software information - Operating system: - Rust version: - Project version: ### Additional context _No response_ -- 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]
