Move helper

This commit is contained in:
Yves
2025-02-21 11:42:44 +01:00
parent 312e630f5b
commit 9f0b18b4ef
3 changed files with 17 additions and 9 deletions

View File

@@ -24,5 +24,14 @@ SingleStringResultBind(ClientContext &, TableFunctionBindInput &,
return nullptr;
}
unique_ptr<FunctionData> SingleBoolResultBind(ClientContext &,
TableFunctionBindInput &,
vector<LogicalType> &out_types,
vector<std::string> &out_names) {
out_names.emplace_back("result");
out_types.emplace_back(LogicalType::BOOLEAN);
return nullptr;
}
} // namespace internal
} // namespace duckdb