Commit d243436 1 parent 6046058 commit d243436 Copy full SHA for d243436
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ unique_ptr <FunctionData> ArrowIPCTableFunction::ArrowScanBind(ClientContext &co
53
53
54
54
// TODO Everything below this is identical to the bind in duckdb/src/function/table/arrow.cpp
55
55
auto &data = *res;
56
- stream_factory_get_schema (stream_factory_ptr, data.schema_root );
56
+ stream_factory_get_schema ((ArrowArrayStream *) stream_factory_ptr, data.schema_root . arrow_schema );
57
57
for (idx_t col_idx = 0 ; col_idx < (idx_t ) data.schema_root .arrow_schema .n_children ; col_idx++) {
58
58
auto &schema = *data.schema_root .arrow_schema .children [col_idx];
59
59
if (!schema.release ) {
@@ -75,7 +75,7 @@ unique_ptr <FunctionData> ArrowIPCTableFunction::ArrowScanBind(ClientContext &co
75
75
}
76
76
names.push_back (name);
77
77
}
78
- ArrowTableFunction::RenameArrowColumns (names);
78
+ QueryResult::DeduplicateColumns (names);
79
79
return std::move (res);
80
80
}
81
81
You can’t perform that action at this time.
0 commit comments