fix master failed cases

This commit is contained in:
wangt1xiuyi
2023-11-03 09:09:25 +00:00
committed by ob-robot
parent a2a3acd52a
commit 718887095b
3 changed files with 19 additions and 7 deletions

View File

@ -106,7 +106,8 @@ public:
strict_json_(false),
absent_on_null_(false),
returning_type_(INT64_MAX),
with_unique_keys_(false)
with_unique_keys_(false),
max_disuse_param_expr_(NULL)
{}
ObAggrInfo(common::ObIAllocator &alloc)
: expr_(NULL),
@ -134,7 +135,8 @@ public:
strict_json_(false),
absent_on_null_(false),
returning_type_(INT64_MAX),
with_unique_keys_(false)
with_unique_keys_(false),
max_disuse_param_expr_(NULL)
{}
virtual ~ObAggrInfo();
@ -215,6 +217,8 @@ public:
bool absent_on_null_;
int64_t returning_type_;
bool with_unique_keys_;
//used for top_k_fre_hist
ObExpr *max_disuse_param_expr_;
};
typedef common::ObFixedArray<ObAggrInfo, common::ObIAllocator> AggrInfoFixedArray;