Incorrect result when using NULL IN empty subquery · Issue #6622 · prestodb/presto

presto:tiny> select x from (values null, 1) t(x) where (x in (select * from (values 1) p(y) where y < 0)) is null; x ------ NULL (1 row) The query is expected to return an empty result set.