◆ IsDeleteConstraint()
| bool duckdb::ForeignKeyInfo::IsDeleteConstraint |
( |
| ) |
const |
|
inline |
28391 {
28392 return type == ForeignKeyType::FK_TYPE_PRIMARY_KEY_TABLE ||
28393 type == ForeignKeyType::FK_TYPE_SELF_REFERENCE_TABLE;
28394 }
◆ IsAppendConstraint()
| bool duckdb::ForeignKeyInfo::IsAppendConstraint |
( |
| ) |
const |
|
inline |
28395 {
28396 return type == ForeignKeyType::FK_TYPE_FOREIGN_KEY_TABLE ||
28397 type == ForeignKeyType::FK_TYPE_SELF_REFERENCE_TABLE;
28398 }
◆ table
| string duckdb::ForeignKeyInfo::table |
if type is FK_TYPE_FOREIGN_KEY_TABLE, means main key table, if type is FK_TYPE_PRIMARY_KEY_TABLE, means foreign key table
The documentation for this struct was generated from the following file: