RSAgr commented on issue #12342: URL: https://github.com/apache/datafusion/issues/12342#issuecomment-3705300840
I get it that PostgreSQL would be working fine because PostgreSQL has implicit type coercion rules. Coming to why it is not working here : This line, Operator::Plus => add_wrapping(&l, &r), expects Arrow's kernel functions to add Date32 and Interval(MonthDayNano), but Arrow's add_wrapping doesn't know how to do it We should try it without converting to Interval, I guess it should work. Let me try -- 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]
