Skip to content

Commit

Permalink
explicit pyarrow scan ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
mxwli committed Mar 14, 2024
1 parent ce4f394 commit e64ac5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/python_api/src_cpp/include/pyarrow/pyarrow_scan.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace kuzu {
struct PyArrowTableScanLocalState : public function::TableFuncLocalState {
ArrowArrayWrapper* arrowArray;

PyArrowTableScanLocalState(ArrowArrayWrapper* arrowArray) : arrowArray{arrowArray} {}
explicit PyArrowTableScanLocalState(ArrowArrayWrapper* arrowArray) : arrowArray{arrowArray} {}
};

struct PyArrowTableScanSharedState : public function::BaseScanSharedState {
Expand Down

0 comments on commit e64ac5b

Please sign in to comment.