torcharrow
torcharrow copied to clipboard
Efficient kernel implementation for `IColumn.fill_null/drop_null`
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.