duckdb-rs
                                
                                 duckdb-rs copied to clipboard
                                
                                    duckdb-rs copied to clipboard
                            
                            
                            
                        Fixes the issue ignoring nulls when copy from arrow array to flat vector
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.