Github user gatorsmile commented on the pull request:

    https://github.com/apache/spark/pull/10344#issuecomment-165331157
  
    ```scala
    checkAnswer(
        sqlContext.read.parquet(path).where("not (a = 2 and b in ('1'))"),
        (1 to 5).map(i => Row(i, (i%2).toString)))
    ```
    The above test case failed. 
    ```
    [info]   == Results ==
    [info]   !== Correct Answer - 5 ==   == Spark Answer - 4 ==
    [info]    [1,1]                      [1,1]
    [info]   ![2,0]                      [3,1]
    [info]   ![3,1]                      [4,0]
    [info]   ![4,0]                      [5,1]
    [info]   ![5,1]
    ```
    
    @yhuai Could you take a look at it? Should I merge my fix? Thanks!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to