Fix functional index blacklist bug and cherry-pick commits

This commit is contained in:
2149
2023-08-02 04:48:17 +00:00
committed by ob-robot
parent 1ebe477f5e
commit 56c2af43e5
5 changed files with 6 additions and 5 deletions

View File

@ -981,7 +981,7 @@ class ObFuncExprOperator : public ObExprOperator
public:
ObFuncExprOperator(common::ObIAllocator &alloc, ObExprOperatorType type, const char *name, int32_t param_num, ObValidForGeneratedColFlag valid_for_generated_col, int32_t dimension,
bool is_internal_for_mysql = false, bool is_internal_for_oracle = false)
: ObExprOperator(alloc, type, name, param_num, valid_for_generated_col, dimension, is_internal_for_oracle)
: ObExprOperator(alloc, type, name, param_num, valid_for_generated_col, dimension, is_internal_for_mysql, is_internal_for_oracle)
{};
virtual ~ObFuncExprOperator() {};