cloud-fan commented on code in PR #58025:
URL: https://github.com/apache/spark/pull/58025#discussion_r3818123919
##########
sql/api/src/main/scala/org/apache/spark/sql/functions.scala:
##########
@@ -7366,6 +7366,20 @@ object functions {
*/
def bitmap_and_agg(col: Column): Column = Column.fn("bitmap_and_agg", col)
+ /**
+ * Returns a bitmap that is the bitwise XOR of all of the bitmaps from the
input column. The
+ * input column should be bitmaps created from bitmap_construct_agg().
+ *
+ * @param col
+ * The input column should be bitmaps created from bitmap_construct_agg().
A column that
+ * evaluates to a binary.
Review Comment:
**Nit:**
```suggestion
* A column containing bitmaps created by bitmap_construct_agg() and
evaluating to binary data.
```
--
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]