1 | //===----------------------------------------------------------------------===// |
2 | // DuckDB |
3 | // |
4 | // duckdb/main/table_description.hpp |
5 | // |
6 | // |
7 | //===----------------------------------------------------------------------===// |
8 | |
9 | #pragma once |
10 | |
11 | #include "duckdb/parser/column_definition.hpp" |
12 | |
13 | namespace duckdb { |
14 | |
15 | struct TableDescription { |
16 | //! The schema of the table |
17 | string schema; |
18 | //! The table name of the table |
19 | string table; |
20 | //! The columns of the table |
21 | vector<ColumnDefinition> columns; |
22 | }; |
23 | |
24 | } // namespace duckdb |
25 | |