patch 4.0
This commit is contained in:
@ -14,22 +14,21 @@
|
||||
#define _OB_EXPLAIN_LOG_PLAN_H
|
||||
#include "sql/optimizer/ob_log_plan.h"
|
||||
|
||||
namespace oceanbase {
|
||||
namespace sql {
|
||||
class ObExplainLogPlan : public ObLogPlan {
|
||||
public:
|
||||
ObExplainLogPlan(ObOptimizerContext& ctx, const ObDMLStmt* explain_stmt) : ObLogPlan(ctx, explain_stmt)
|
||||
{}
|
||||
virtual ~ObExplainLogPlan()
|
||||
{}
|
||||
|
||||
int generate_raw_plan();
|
||||
|
||||
virtual int generate_plan();
|
||||
|
||||
private:
|
||||
DISALLOW_COPY_AND_ASSIGN(ObExplainLogPlan);
|
||||
};
|
||||
} // namespace sql
|
||||
} // namespace oceanbase
|
||||
namespace oceanbase
|
||||
{
|
||||
namespace sql
|
||||
{
|
||||
class ObExplainLogPlan : public ObLogPlan
|
||||
{
|
||||
public:
|
||||
ObExplainLogPlan(ObOptimizerContext &ctx, const ObDMLStmt *explain_stmt)
|
||||
: ObLogPlan(ctx, explain_stmt)
|
||||
{}
|
||||
virtual ~ObExplainLogPlan() {}
|
||||
virtual int generate_raw_plan() override;
|
||||
private:
|
||||
DISALLOW_COPY_AND_ASSIGN(ObExplainLogPlan);
|
||||
};
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user