//===----------------------------------------------------------------------===// // DuckDB // // duckdb/common/bind_helpers.hpp // // //===----------------------------------------------------------------------===// #pragma once #include "duckdb/common/vector.hpp" #include "duckdb/common/common.hpp" namespace duckdb { class Value; Value ConvertVectorToValue(vector set); vector ParseColumnList(const vector &set, vector &names, const string &option_name); vector ParseColumnList(const Value &value, vector &names, const string &option_name); vector ParseColumnsOrdered(const vector &set, vector &names, const string &loption); vector ParseColumnsOrdered(const Value &value, vector &names, const string &loption); } // namespace duckdb