jackylee-ch commented on pull request #35669: URL: https://github.com/apache/spark/pull/35669#issuecomment-1064721359
> The data filters are actually [((id#9L > 0) OR (id#9L = 2))] and the predicate pushed down to Parquet is [((id#9L > 0) OR (id#9L = 2))] Hm, acutally, the predicate pushed down to Parquet should be `[(id#9L > 0)]` or `[(id#9L = 2)]`, that's why we need runtime filter pruning. BTW, it's the meaning of the pushed filter changed. In this PR, the pushed filter means the filter of push to runtime, not the filter of push to parquet. Maybe using `PushedRuntimeFilters` instande of `PushedFilters`? -- 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]
