Skip to content

Commit

Permalink
[Dev] Apply duckdb's ubsan_fix.patch
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Feb 9, 2024
1 parent 0541721 commit a29b298
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arrow_scan_ipc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ unique_ptr <FunctionData> ArrowIPCTableFunction::ArrowScanBind(ClientContext &co

// TODO Everything below this is identical to the bind in duckdb/src/function/table/arrow.cpp
auto &data = *res;
stream_factory_get_schema(stream_factory_ptr, data.schema_root);
stream_factory_get_schema((ArrowArrayStream *) stream_factory_ptr, data.schema_root.arrow_schema);

Check failure on line 56 in src/arrow_scan_ipc.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

invalid conversion from ‘ArrowArrayStream*’ to ‘long unsigned int’ [-fpermissive]

Check failure on line 56 in src/arrow_scan_ipc.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

invalid initialization of reference of type ‘duckdb::ArrowSchemaWrapper&’ from expression of type ‘ArrowSchema’

Check failure on line 56 in src/arrow_scan_ipc.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

invalid conversion from ‘ArrowArrayStream*’ to ‘long unsigned int’ [-fpermissive]

Check failure on line 56 in src/arrow_scan_ipc.cpp

View workflow job for this annotation

GitHub Actions / Build extension binaries / Linux (linux_amd64_gcc4, quay.io/pypa/manylinux2014_x86_64, x64-linux)

invalid initialization of reference of type ‘duckdb::ArrowSchemaWrapper&’ from expression of type ‘ArrowSchema’
for (idx_t col_idx = 0; col_idx < (idx_t) data.schema_root.arrow_schema.n_children; col_idx++) {
auto &schema = *data.schema_root.arrow_schema.children[col_idx];
if (!schema.release) {
Expand Down

0 comments on commit a29b298

Please sign in to comment.