DBMS_SPM.LOAD_PLANS_FROM_CURSOR_CACHE need return correct baseline number load from plan cache

This commit is contained in:
obdev
2023-07-11 04:48:16 +00:00
committed by ob-robot
parent ceeb9e31f6
commit b4511b899d
4 changed files with 26 additions and 0 deletions

View File

@ -9322,6 +9322,18 @@ private:
int ret_;
};
struct ObLoadBaselineRes
{
OB_UNIS_VERSION(1);
public:
ObLoadBaselineRes()
: load_count_(0)
{}
int assign(const ObLoadBaselineRes &other);
TO_STRING_KV(K_(load_count));
uint64_t load_count_;
};
}//end namespace obrpc
}//end namespace oceanbase
#endif