| 1 | #include "duckdb/catalog/catalog_entry/table_function_catalog_entry.hpp" |
|---|---|
| 2 | |
| 3 | #include "duckdb/common/exception.hpp" |
| 4 | #include "duckdb/parser/constraints/list.hpp" |
| 5 | #include "duckdb/parser/parsed_data/create_table_function_info.hpp" |
| 6 | #include "duckdb/storage/storage_manager.hpp" |
| 7 | |
| 8 | #include <algorithm> |
| 9 | |
| 10 | using namespace duckdb; |
| 11 | using namespace std; |
| 12 | |
| 13 | TableFunctionCatalogEntry::TableFunctionCatalogEntry(Catalog *catalog, SchemaCatalogEntry *schema, |
| 14 | CreateTableFunctionInfo *info) |
| 15 | : StandardEntry(CatalogType::TABLE_FUNCTION, schema, catalog, info->name), function(info->function) { |
| 16 | } |
| 17 |