This repository was archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 81
This repository was archived by the owner on Nov 1, 2024. It is now read-only.
Efficient kernel implementation for IColumn.fill_null/drop_null
#64
Open
Labels
@wenleix
Description
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.