alamb commented on issue #22506: URL: https://github.com/apache/datafusion/issues/22506#issuecomment-4579533419
I think we should research what other systems do in this case and follow suite (like what does postgres do?) The user can always add expicit casts and it is also possible I think to provide the types of the bind parameters expclitiy 🤔 ```sql SELECT $1::int = s FROM t JOIN t2 ON t2.id = $1::int; ``` -- 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]
