GitHub user aprimadi closed a discussion: Why isn't this predicate being pushed down to TableScan?
``` query TT EXPLAIN SELECT * FROM join_t1 RIGHT JOIN join_t2 on join_t1.t1_id = join_t2.t2_id WHERE join_t1.t1_int IS NOT NULL ---- logical_plan Inner Join: join_t1.t1_id = join_t2.t2_id --Filter: join_t1.t1_int IS NOT NULL ----TableScan: join_t1 projection=[t1_id, t1_name, t1_int] --TableScan: join_t2 projection=[t2_id, t2_name, t2_int] ``` GitHub link: https://github.com/apache/datafusion/discussions/6541 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
