disable expr pullup and const propagate with var assign

This commit is contained in:
yinyj17
2024-02-07 17:08:07 +00:00
committed by ob-robot
parent a5ceb247de
commit e248af772c
3 changed files with 32 additions and 13 deletions

View File

@ -493,7 +493,8 @@ bool ObTransformExprPullup::is_view_acceptable_for_rewrite(TableItem &view)
&& !view.ref_query_->is_hierarchical_query()
&& !view.ref_query_->has_select_into()
&& !view.ref_query_->is_set_stmt()
&& !view.ref_query_->is_distinct();
&& !view.ref_query_->is_distinct()
&& !view.ref_query_->is_contains_assignment();
}
int ObTransformExprPullup::check_stmt_validity(const ObDMLStmt *stmt, bool &is_valid)