alamb closed issue #15863: Placeholders in IN lists are not inferred
URL: https://github.com/apache/datafusion/issues/15863
--
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 u
kczimm opened a new issue, #15863:
URL: https://github.com/apache/datafusion/issues/15863
### Describe the bug
Placeholders datatypes in `IN` lists are not inferred:
Example:
```sql
SELECT * FROM employees WHERE department_id IN ($1, $2, $3);
```
### To Reproduce