[to #34995399] fix mysqltest
This commit is contained in:
parent
1f8fbdbbc7
commit
519580dd8c
@ -4213,7 +4213,8 @@ int ObSchemaPrinter::print_simple_trigger_definition(const ObTriggerInfo &trigge
|
|||||||
const ParseNode *trigger_source_node = NULL;
|
const ParseNode *trigger_source_node = NULL;
|
||||||
const ParseNode *trigger_define_node = NULL;
|
const ParseNode *trigger_define_node = NULL;
|
||||||
const ParseNode *trigger_body_node = NULL;
|
const ParseNode *trigger_body_node = NULL;
|
||||||
OZ (parser.parse(trigger_info.get_trigger_body(), parse_result, TRIGGER_MODE),
|
OZ (parser.parse(trigger_info.get_trigger_body(), parse_result, TRIGGER_MODE,
|
||||||
|
false, false, true),
|
||||||
trigger_info.get_trigger_body());
|
trigger_info.get_trigger_body());
|
||||||
// stmt list node
|
// stmt list node
|
||||||
OV (OB_NOT_NULL(stmt_list_node = parse_result.result_tree_));
|
OV (OB_NOT_NULL(stmt_list_node = parse_result.result_tree_));
|
||||||
@ -4304,7 +4305,9 @@ int ObSchemaPrinter::print_compound_instead_trigger_definition(const ObTriggerIn
|
|||||||
ObArenaAllocator alloc;
|
ObArenaAllocator alloc;
|
||||||
sql::ObParser parser(alloc, trigger_info.get_sql_mode());
|
sql::ObParser parser(alloc, trigger_info.get_sql_mode());
|
||||||
ParseResult parse_result;
|
ParseResult parse_result;
|
||||||
OZ (parser.parse(trigger_info.get_trigger_body(), parse_result, TRIGGER_MODE), trigger_info.get_trigger_body());
|
OZ (parser.parse(trigger_info.get_trigger_body(), parse_result, TRIGGER_MODE,
|
||||||
|
false, false, true),
|
||||||
|
trigger_info.get_trigger_body());
|
||||||
CK (OB_NOT_NULL(parse_result.result_tree_) && OB_NOT_NULL(parse_result.result_tree_->children_[0]));
|
CK (OB_NOT_NULL(parse_result.result_tree_) && OB_NOT_NULL(parse_result.result_tree_->children_[0]));
|
||||||
OZ (BUF_PRINTF(" %.*s", (int)(parse_result.result_tree_->children_[0]->str_len_),
|
OZ (BUF_PRINTF(" %.*s", (int)(parse_result.result_tree_->children_[0]->str_len_),
|
||||||
parse_result.result_tree_->children_[0]->str_value_));
|
parse_result.result_tree_->children_[0]->str_value_));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user