This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
Efficient kernel implementation for IColumn.fill_null/drop_null
#64
Labels
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 callsfill_null/drop_null
in Arrow array, and then converts back (from_arrow
is working in progress)This looks like a decent initial implementation.
The text was updated successfully, but these errors were encountered: