|
|
string | database |
| | The database of the table.
|
| |
|
string | schema |
| | The schema of the table.
|
| |
|
string | table |
| | The name of the table.
|
| |
|
bool | readonly |
| | True, if the catalog is readonly.
|
| |
|
vector< ColumnDefinition > | columns |
| | The columns of the table.
|
| |
◆ TableDescription()
| duckdb::TableDescription::TableDescription |
( |
const string & |
database_name, |
|
|
const string & |
schema_name, |
|
|
const string & |
table_name |
|
) |
| |
|
inline |
string schema
The schema of the table.
Definition duckdb.hpp:41356
string table
The name of the table.
Definition duckdb.hpp:41358
string database
The database of the table.
Definition duckdb.hpp:41354
◆ PhysicalColumnCount()
| idx_t duckdb::TableDescription::PhysicalColumnCount |
( |
| ) |
const |
|
inline |
41365 {
41366 idx_t count = 0;
41367 for (
auto &column :
columns) {
41368 if (column.Generated()) {
41369 continue;
41370 }
41371 count++;
41372 }
41373 D_ASSERT(count != 0);
41374 return count;
41375 }
vector< ColumnDefinition > columns
The columns of the table.
Definition duckdb.hpp:41362
The documentation for this class was generated from the following file: