Github user mgaido91 commented on the issue:
https://github.com/apache/spark/pull/19635
Oracle behaves like Spark after the patch:
```
select 'a' from dual where 1 in ('01');
// returns 'a'
select 'a' from dual where 1 in (select '01' from dual);
// returns 'a'
```--- --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
