Github user cloud-fan commented on the issue:

    https://github.com/apache/spark/pull/22047
  
    is it possible to rewrite these 3 new functions with existing expression? 
e.g.
    `every(col)` -> `count(if (col) null else 1) == 0`
    `any(col)` -> `count(if (col) 1 else null) > 0`


---

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

Reply via email to