1 | #include "duckdb/planner/operator/logical_table_function.hpp" |
---|---|
2 | |
3 | #include "duckdb/catalog/catalog_entry/table_function_catalog_entry.hpp" |
4 | |
5 | using namespace duckdb; |
6 | using namespace std; |
7 | |
8 | vector<ColumnBinding> LogicalTableFunction::GetColumnBindings() { |
9 | return GenerateColumnBindings(table_index, return_types.size()); |
10 | } |
11 | |
12 | void LogicalTableFunction::ResolveTypes() { |
13 | for (auto &type : return_types) { |
14 | types.push_back(GetInternalType(type)); |
15 | } |
16 | } |
17 |