Fix some plan cache bug

This commit is contained in:
obdev
2023-07-25 06:42:57 +00:00
committed by ob-robot
parent 79e6e3852c
commit 0065e91dda
5 changed files with 11 additions and 10 deletions

View File

@ -68,7 +68,7 @@ public:
public:
ExtraInfo(common::ObIAllocator &alloc, ObExprOperatorType type)
: ObIExprExtraInfo(alloc, type),
is_cursor_(false), row_desc_(alloc) {}
is_cursor_(false), scalar_result_type_(alloc), row_desc_(alloc) {}
virtual ~ExtraInfo() { row_desc_.destroy(); }
void reset();
int assign(const ExtraInfo &other);