neilconway commented on PR #20426: URL: https://github.com/apache/datafusion/pull/20426#issuecomment-3924347326
The [ClickBench queries](https://github.com/apache/datafusion/blob/c699361cb4ae13276ca4bd936d3ed4d3cffe78e6/datafusion/core/tests/sql/unparser.rs#L109) are just weird: they have expressions like `"EventDate" >= '2013-07-01'`, where `EventDate` is a `uint16`. Previously, `EventDate` would be cast to a string and the comparison would have been done lexicographically, which is wrong but didn't fail. Now we'll try to coerce the string literal to a numeric, which fails. So this is intended behavior -- the ClickBench queries need fixing up some other way. -- 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]
