Unexpected None
behavior when working with computation ak.cartesian
#3197
Labels
bug (unverified)
The problem described would be a bug, but needs to be triaged
Version of Awkward Array
2.6.6
Description and code to reproduce
When working with pair-wise computations with
ak.cartesian
, if a collection was reordered using aNone
-able array, the computation results can cause a un-used field to be computed asNone
.In the case below, the array
idx
and either beNone
-able (signature20 * var * ?int64
) or not-None
-able (signature20 * var * int64
) by toggling thefill_none
line, even if the numerical value of the array is unchanged. The final output of the unused fieldcol1.y
will change depending on:idx
was aNone
-able arraycol1["r"]
.The text was updated successfully, but these errors were encountered: