|
|
vector< PhysicalIndex > | keys |
| | The keys that define the unique constraint.
|
| |
|
physical_index_set_t | key_set |
| | The same keys but stored as an unordered set.
|
| |
|
bool | is_primary_key |
| | Whether this is a PRIMARY KEY constraint, or a UNIQUE constraint.
|
| |
|
ConstraintType | type |
| |
◆ BoundUniqueConstraint()
| duckdb::BoundUniqueConstraint::BoundUniqueConstraint |
( |
vector< PhysicalIndex > |
keys_p, |
|
|
physical_index_set_t |
key_set_p, |
|
|
const bool |
is_primary_key |
|
) |
| |
|
inline |
9235 : BoundConstraint(ConstraintType::UNIQUE),
keys(std::move(keys_p)),
key_set(std::move(key_set_p)),
9237#ifdef DEBUG
9239 for (
auto &key :
keys) {
9241 }
9242#endif
9243 }
bool is_primary_key
Whether this is a PRIMARY KEY constraint, or a UNIQUE constraint.
Definition duckdb.cpp:9250
physical_index_set_t key_set
The same keys but stored as an unordered set.
Definition duckdb.cpp:9248
vector< PhysicalIndex > keys
The keys that define the unique constraint.
Definition duckdb.cpp:9246
◆ Copy()
The documentation for this class was generated from the following file:
- external/duckdb/duckdb.cpp