comphead commented on issue #10583:
URL: https://github.com/apache/datafusion/issues/10583#issuecomment-3358452678

   @viirya mind if I take this? 
   
   DuckDB example
   
   ```
   D CREATE TABLE IF NOT EXISTS test_table(c1 INT, c2 INT);
   D insert into t1  VALUES
     (1, 1),
     (2, 2),
     (3, 3),
     (4, null),
     (null, 0);
   
   D SELECT * FROM test_table t1 WHERE (c1 NOT IN (SELECT c2 FROM test_table)) 
= true;
   ┌───────┬───────┐
   │  c1   │  c2   │
   │ int32 │ int32 │
   ├───────┴───────┤
   │    0 rows     │
   └───────────────┘
   ```


-- 
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]

Reply via email to