jackwener commented on pull request #2039: URL: https://github.com/apache/arrow-datafusion/pull/2039#issuecomment-1073188069
The result of unit test: Before ``` let expected ="Projection: #a, #b\ \n Filter: #a = Int64(10)\ \n Filter: #b > Int64(11)\ \n TableScan: test projection=Some([0]), filters=[#a = Int64(10), #b > Int64(11)]"; ``` After ``` let expected ="Projection: #a, #b\ \n Filter: #a = Int64(10) AND #b > Int64(11)\ \n TableScan: test projection=Some([0]), filters=[#a = Int64(10), #b > Int64(11)]"; ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org