Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22857#discussion_r229150101
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/DataFrameSuite.scala 
---
    @@ -2578,4 +2578,45 @@ class DataFrameSuite extends QueryTest with 
SharedSQLContext {
             Row ("abc", 1))
         }
       }
    +
    +  test("SPARK-25860: Replace Literal(null, _) with FalseLiteral whenever 
possible") {
    +
    +    def checkPlanIsEmptyLocalScan(df: DataFrame): Unit = 
df.queryExecution.executedPlan match {
    --- End diff --
    
    yea we have. Take a look at `TestHive`, and we did something similar before
    ```
    // Disable ConvertToLocalRelation for better test coverage. Test cases 
built on
    // LocalRelation will exercise the optimization rules better by disabling 
it as
    // this rule may potentially block testing of other optimization rules such 
as
    // ConstantPropagation etc.
    .set(SQLConf.OPTIMIZER_EXCLUDED_RULES.key, 
ConvertToLocalRelation.ruleName)))
    ```


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to