duckdb-rs icon indicating copy to clipboard operation
duckdb-rs copied to clipboard

Fixes the issue ignoring nulls when copy from arrow array to flat vector

Open y-f-u opened this issue 1 year ago • 0 comments

This fixes #157

When copying an arrow array which contains null into duckdb, the value is converted to default value before the fix.

The fix loops through the null marks in the array and call vector set_null accordingly.

y-f-u avatar May 24 '24 04:05 y-f-u