[to #54712946] Add with_if_not_exist_ in ObCreateTriggerArg for support if not exists grammar in trigger

This commit is contained in:
obdev 2024-02-10 04:36:37 +00:00 committed by ob-robot
parent cd30dbac63
commit 51df044609

View File

@ -6907,6 +6907,7 @@ public:
K(trigger_info_),
K(with_replace_),
K(in_second_stage_),
K(with_if_not_exist_),
K(error_info_),
K(dependency_infos_));
public:
@ -6921,7 +6922,8 @@ public:
{
uint32_t with_replace_:1;
uint32_t in_second_stage_:1; // is second create trigger stage
uint32_t reserved_:30;
uint32_t with_if_not_exist_:1;
uint32_t reserved_:29;
};
};
share::schema::ObErrorInfo error_info_;