patch 4.0
This commit is contained in:
@ -18,15 +18,27 @@
|
||||
#include "sql/engine/ob_physical_plan.h"
|
||||
#include "sql/engine/ob_exec_context.h"
|
||||
|
||||
namespace oceanbase {
|
||||
namespace oceanbase
|
||||
{
|
||||
using namespace common;
|
||||
namespace sql {
|
||||
namespace sql
|
||||
{
|
||||
|
||||
ObDistinctSpec::ObDistinctSpec(ObIAllocator& alloc, const ObPhyOperatorType type)
|
||||
: ObOpSpec(alloc, type), distinct_exprs_(alloc), cmp_funcs_(alloc), is_block_mode_(false)
|
||||
ObDistinctSpec::ObDistinctSpec(ObIAllocator &alloc, const ObPhyOperatorType type)
|
||||
: ObOpSpec(alloc, type),
|
||||
distinct_exprs_(alloc),
|
||||
cmp_funcs_(alloc),
|
||||
is_block_mode_(false),
|
||||
by_pass_enabled_(false)
|
||||
{}
|
||||
|
||||
OB_SERIALIZE_MEMBER((ObDistinctSpec, ObOpSpec), distinct_exprs_, cmp_funcs_, is_block_mode_);
|
||||
OB_SERIALIZE_MEMBER((ObDistinctSpec, ObOpSpec),
|
||||
distinct_exprs_,
|
||||
cmp_funcs_,
|
||||
is_block_mode_,
|
||||
by_pass_enabled_);
|
||||
|
||||
|
||||
} // end namespace sql
|
||||
} // end namespace oceanbase
|
||||
|
||||
} // end namespace sql
|
||||
} // end namespace oceanbase
|
||||
|
||||
Reference in New Issue
Block a user