torcharrow icon indicating copy to clipboard operation
torcharrow copied to clipboard

Efficient kernel implementation for `IColumn.fill_null/drop_null`

Open wenleix opened this issue 4 years ago • 0 comments
trafficstars

For single colulmn, delegating to Arrow Array seems to be a good initial support.

Arrow array supports fill_null/drop_null.

So we can first call to_arrow, then calls fill_null/drop_null in Arrow array, and then converts back (from_arrow is working in progress)

This looks like a decent initial implementation.

wenleix avatar Nov 13 '21 07:11 wenleix