cloud-fan commented on a change in pull request #35213:
URL: https://github.com/apache/spark/pull/35213#discussion_r786031606



##########
File path: sql/core/src/test/resources/sql-functions/sql-expression-schema.md
##########
@@ -336,17 +336,17 @@
 | org.apache.spark.sql.catalyst.expressions.aggregate.BitAndAgg | bit_and | 
SELECT bit_and(col) FROM VALUES (3), (5) AS tab(col) | struct<bit_and(col):int> 
|
 | org.apache.spark.sql.catalyst.expressions.aggregate.BitOrAgg | bit_or | 
SELECT bit_or(col) FROM VALUES (3), (5) AS tab(col) | struct<bit_or(col):int> |
 | org.apache.spark.sql.catalyst.expressions.aggregate.BitXorAgg | bit_xor | 
SELECT bit_xor(col) FROM VALUES (3), (5) AS tab(col) | struct<bit_xor(col):int> 
|
-| org.apache.spark.sql.catalyst.expressions.aggregate.BoolAnd | bool_and | 
SELECT bool_and(col) FROM VALUES (true), (true), (true) AS tab(col) | 
struct<bool_and(col):boolean> |
-| org.apache.spark.sql.catalyst.expressions.aggregate.BoolAnd | every | SELECT 
every(col) FROM VALUES (true), (true), (true) AS tab(col) | 
struct<every(col):boolean> |
-| org.apache.spark.sql.catalyst.expressions.aggregate.BoolOr | any | SELECT 
any(col) FROM VALUES (true), (false), (false) AS tab(col) | 
struct<any(col):boolean> |
-| org.apache.spark.sql.catalyst.expressions.aggregate.BoolOr | bool_or | 
SELECT bool_or(col) FROM VALUES (true), (false), (false) AS tab(col) | 
struct<bool_or(col):boolean> |
-| org.apache.spark.sql.catalyst.expressions.aggregate.BoolOr | some | SELECT 
some(col) FROM VALUES (true), (false), (false) AS tab(col) | 
struct<some(col):boolean> |
+| org.apache.spark.sql.catalyst.expressions.aggregate.BoolAnd | bool_and | 
SELECT bool_and(col) FROM VALUES (true), (true), (true) AS tab(col) | 
struct<min(col):boolean> |

Review comment:
       Do you know how we introduce this change? 




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



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

Reply via email to