reformat source code

according to code styles, 'AccessModifierOffset' should be -2.
This commit is contained in:
gm
2021-06-16 15:48:42 +08:00
committed by MizuhaHimuraki
parent 8c4a2f26a6
commit 4a92b6d7df
3314 changed files with 23131 additions and 23401 deletions

View File

@ -52,7 +52,7 @@ static const MonitorName OB_PLAN_MONITOR_INFOS[] = {
{MAX_EVENT_ID, "max_event"}};
class ObPhyPlanExecInfo final : public ObPhyOperatorMonitorInfo {
public:
public:
ObPhyPlanExecInfo()
{}
inline virtual int64_t print_info(char* buf, int64_t buf_len) const;
@ -63,7 +63,7 @@ class ObPhyPlanExecInfo final : public ObPhyOperatorMonitorInfo {
return print_info(buf, buf_len);
}
private:
private:
void set_value(ObPlanMonitorInfoIds index, int64_t value)
{
plan_info_array_[index] = value;
@ -74,7 +74,7 @@ class ObPhyPlanExecInfo final : public ObPhyOperatorMonitorInfo {
}
DISALLOW_COPY_AND_ASSIGN(ObPhyPlanExecInfo);
private:
private:
common::ObWaitEventDesc max_wait_event_;
int64_t plan_info_array_[MAX_EVENT_ID];
};