Returns a numeric column containing the number of rows in each list element in the given lists column.
The output column will have the same number of rows as the input lists column. Each output[i]
will be input[i].size()
.
l = { {1, 2, 3}, {4}, {5, 6} }
r = count_elements(l)
r is now {3, 1, 2}
Any null input element will result in a corresponding null entry in the output column.
- Parameters
-
input | Input lists column. |
mr | Device memory resource used to allocate the returned column's device memory. |
- Returns
- New INT32 column with the number of elements for each row.