Uh oh!
There was an error while loading. Please reload this page.
[SPARK-12249][SQL] JDBC non-equality comparison operator not pushed down. - #10233
[SPARK-12249][SQL] JDBC non-equality comparison operator not pushed down.#10233HyukjinKwon wants to merge 3 commits into
Conversation
HyukjinKwon
commented
Dec 10, 2015
Several things to mention. Firstly, I did not add the tests for it yet because pushed down filters are not correctly tested at the original test codes. I will add as soon as #10221 is merged. Secondly, I just opened this PR without asking if it is really supposed to be supported. This is because I see the test codes intended to check this operator (which is not testing properly) and also I don't think there is any database not supporting this operator as it is a SQL Standard. Lastly I tested this by adding a test locally with #10221. |
SparkQA
commented
Dec 10, 2015
Test build #47459 has finished for PR 10233 at commit
|
HyukjinKwon
commented
Dec 16, 2015
I updated the test for this since #10221 is merged. |
SparkQA
commented
Dec 16, 2015
Test build #47779 has finished for PR 10233 at commit
|
HyukjinKwon
commented
Dec 16, 2015
cc @rxin |
rxin
commented
Dec 16, 2015
Thanks - I've merged this into master. |
https://issues.apache.org/jira/browse/SPARK-12249
Currently
!=operator is not pushed down correctly.I simply added a case for this.