fix some outline unstable problem

This commit is contained in:
jingtaoye35
2023-08-01 13:42:44 +00:00
committed by ob-robot
parent 8024d8ff45
commit 0599c51c72
15 changed files with 181 additions and 120 deletions

View File

@ -435,6 +435,8 @@ public:
bool is_view_merge_hint() const { return HINT_VIEW_MERGE == hint_class_; }
bool is_pred_deduce_hint() const { return T_PRED_DEDUCE == hint_type_; }
bool is_unnest_hint() const { return T_UNNEST == hint_type_; }
bool is_aggr_first_unnest_hint() const { return T_AGGR_FIRST_UNNEST == hint_type_; }
bool is_join_first_unnest_hint() const { return T_JOIN_FIRST_UNNEST == hint_type_; }
bool is_coalesce_sq_hint() const { return HINT_COALESCE_SQ == hint_class_; }
bool is_materialize_hint() const { return HINT_MATERIALIZE == hint_class_; }
bool is_semi_to_inner_hint() const { return HINT_SEMI_TO_INNER == hint_class_; }