[FEAT MERGE] implement SQL level resource management based on pattern match

This commit is contained in:
obdev
2023-01-04 12:39:02 +00:00
committed by ob-robot
parent cca9f7c2d2
commit 7c991b5da5
58 changed files with 2613 additions and 168 deletions

View File

@ -341,6 +341,7 @@ struct ObResolverParams
hidden_column_scope_(T_NONE_SCOPE),
outline_parse_result_(NULL),
is_execute_call_stmt_(false),
enable_res_map_(false),
need_check_col_dup_(true)
{}
bool is_force_trace_log() { return force_trace_log_; }
@ -404,6 +405,7 @@ public:
ObStmtScope hidden_column_scope_; // record scope for first hidden column which need check hidden_column_visable in opt_param hint
ParseResult *outline_parse_result_;
bool is_execute_call_stmt_;
bool enable_res_map_;
bool need_check_col_dup_;
};
} // end namespace sql