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