Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfengHKU committed Dec 24, 2024
1 parent e2f581a commit cf4b548
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/python_api/src_cpp/py_udf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ struct PyUDFScalarFunction : public ScalarFunction {
PyUDFScalarFunction(std::string name, std::vector<common::LogicalTypeID> parameterTypeIDs,
common::LogicalTypeID returnTypeID, scalar_func_exec_t execFunc, scalar_bind_func bindFunc)
: ScalarFunction{std::move(name), std::move(parameterTypeIDs), returnTypeID,
std::move(execFunc), std::move(bindFunc)} {}
std::move(execFunc)} {
this->bindFunc = bindFunc;
}

DELETE_COPY_DEFAULT_MOVE(PyUDFScalarFunction);

Expand Down

0 comments on commit cf4b548

Please sign in to comment.