You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It produces WrappedArray(null) while the expected value would be WrappedArray() because the initial dataset is empty.
Please note that this bug happen only when collectSet is combined with an other aggregation. Aggregating only with min produces the expected result.
While using only collectSet
ds.agg(collectSet(ds('bar))).collect.run
Produces WrappedArray(Vector()) while the expected value is WrappedArray()
I haven't tested with the other collect functions llke collectList
The text was updated successfully, but these errors were encountered:
Consider the following example:
It produces
WrappedArray(null)
while the expected value would beWrappedArray()
because the initial dataset is empty.Please note that this bug happen only when
collectSet
is combined with an other aggregation. Aggregating only withmin
produces the expected result.While using only
collectSet
Produces
WrappedArray(Vector())
while the expected value isWrappedArray()
I haven't tested with the other collect functions llke
collectList
The text was updated successfully, but these errors were encountered: