Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SPARK-34436][SQL] DPP support LIKE ANY/ALL expression
### What changes were proposed in this pull request? This pr make DPP support LIKE ANY/ALL expression: ```sql SELECT date_id, product_id FROM fact_sk f JOIN dim_store s ON f.store_id = s.store_id WHERE s.country LIKE ANY ('%D%E%', '%A%B%') ``` ### Why are the changes needed? Improve query performance. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Unit test. Closes apache#31563 from wangyum/SPARK-34436. Lead-authored-by: Yuming Wang <[email protected]> Co-authored-by: Yuming Wang <[email protected]> Signed-off-by: Wenchen Fan <[email protected]> (cherry picked from commit 4a3200b) Signed-off-by: Wenchen Fan <[email protected]>
- Loading branch information