◆ DatabaseModificationType() [1/2]
| constexpr duckdb::DatabaseModificationType::DatabaseModificationType |
( |
| ) |
|
|
inlineconstexpr |
19275 : value(0) {
19276 }
◆ DatabaseModificationType() [2/2]
| constexpr duckdb::DatabaseModificationType::DatabaseModificationType |
( |
idx_t |
value | ) |
|
|
inlineconstexpr |
19277 : value(value) {
19278 }
◆ operator|()
19280 {
19281 return DatabaseModificationType(value | b.value);
19282 }
◆ operator|=()
19283 {
19284 value |= b.value;
19285 return *this;
19286 }
◆ InsertData()
| bool duckdb::DatabaseModificationType::InsertData |
( |
| ) |
const |
|
inline |
19288 {
19289 return value & INSERT_DATA;
19290 }
◆ DeleteData()
| bool duckdb::DatabaseModificationType::DeleteData |
( |
| ) |
const |
|
inline |
19291 {
19292 return value & DELETE_DATA;
19293 }
◆ UpdateData()
| bool duckdb::DatabaseModificationType::UpdateData |
( |
| ) |
const |
|
inline |
19294 {
19295 return value & UPDATE_DATA;
19296 }
◆ AlterTable()
| bool duckdb::DatabaseModificationType::AlterTable |
( |
| ) |
const |
|
inline |
19297 {
19298 return value & ALTER_TABLE;
19299 }
◆ CreateCatalogEntry()
| bool duckdb::DatabaseModificationType::CreateCatalogEntry |
( |
| ) |
const |
|
inline |
19300 {
19301 return value & CREATE_CATALOG_ENTRY;
19302 }
◆ DropCatalogEntry()
| bool duckdb::DatabaseModificationType::DropCatalogEntry |
( |
| ) |
const |
|
inline |
19303 {
19304 return value & DROP_CATALOG_ENTRY;
19305 }
◆ Sequence()
| bool duckdb::DatabaseModificationType::Sequence |
( |
| ) |
const |
|
inline |
19306 {
19307 return value & SEQUENCE;
19308 }
◆ CreateIndex()
| bool duckdb::DatabaseModificationType::CreateIndex |
( |
| ) |
const |
|
inline |
19309 {
19310 return value & CREATE_INDEX;
19311 }
The documentation for this struct was generated from the following file: