greenplumn CLogicalIntersect 代码
文件路径:/src/backend/gporca/libgpopt/include/gpopt/operators/CLogicalIntersect.h
/---------------------------------------------------------------------------
/ Greenplum Database
/ Copyright (C) 2012 EMC Corp.
/
/ @filename:
/ CLogicalIntersect.h
/
/ @doc:
/ Logical Intersect operator
/---------------------------------------------------------------------------
#ifndef GPOPT_CLogicalIntersect_H
#define GPOPT_CLogicalIntersect_H
#include "gpos/base.h"
#include "gpopt/operators/CExpressionHandle.h"
#include "gpopt/operators/CLogicalSetOp.h"
namespace gpopt
{
/---------------------------------------------------------------------------
/ @class:
/ CLogicalIntersect
/
/ @doc:
/ Intersect operators
/
/---------------------------------------------------------------------------
class CLogicalIntersect : public CLogicalSetOp
{
private:
public:
CLogicalIntersect(const CLogicalIntersect &) = delete;
/ ctor
explicit CLogicalIntersect(CMemoryPool *mp);
CLogicalIntersect(CMemoryPool *mp, CColRefArray *pdrgpcrOutput,
CColRef2dArray *pdrgpdrgpcrInput);
/ dtor
~CLogicalIntersect() override;
/ ident accessors
EOperatorId
Eopid() const override
{
return EopLogicalIntersect;
}
/ return a string for operator name
const CHAR *
SzId() const override
{
return "CLogicalIntersect";
}
/ sensitivity to order of inputs
BOOL
FInputOrderSensitive() const override
{
return true;
}
/ return a copy of the operator with remapped columns
COperator *PopCopyWithRemappedColumns(CMemoryPool *mp,
UlongToColRefMap *colref_mapping,
BOOL must_exist) override;
/-------------------------------------------------------------------------------------
/ Derived Relational Properties
/-------------------------------------------------------------------------------------
/ derive max card
CMaxCard DeriveMaxCard(CMemoryPool *mp,
CExpressionHandle &exprhdl) const override;
/ derive constraint property
CPropConstraint *
DerivePropertyConstraint(CMemoryPool *mp,
CExpressionHandle &exprhdl) const override
{
return PpcDeriveConstraintSetop(mp, exprhdl, true /*fIntersect*/);
}
/-------------------------------------------------------------------------------------
/ Transformations
/-------------------------------------------------------------------------------------
/ candidate set of xforms
CXformSet *PxfsCandidates(CMemoryPool *mp) const override;
/-------------------------------------------------------------------------------------
/ Derived Stats
/-------------------------------------------------------------------------------------
/ stat promise
EStatPromise
Esp(CExpressionHandle &) const override
{
return CLogical::EspHigh;
}
/ derive statistics
IStatistics *PstatsDerive(CMemoryPool *mp, CExpressionHandle &exprhdl,
IStatisticsArray *stats_ctxt) const override;
/-------------------------------------------------------------------------------------
/-------------------------------------------------------------------------------------
/-------------------------------------------------------------------------------------
/ conversion function
static CLogicalIntersect *
PopConvert(COperator *pop)
{
GPOS_ASSERT(nullptr != pop);
GPOS_ASSERT(EopLogicalIntersect == pop->Eopid());
return dynamic_cast<CLogicalIntersect *>(pop);
}
}; / class CLogicalIntersect
} / namespace gpopt
#endif / !GPOPT_CLogicalIntersect_H
/ EOF
相关信息
相关文章
greenplumn CExpressionFactorizer 源码
greenplumn CExpressionHandle 源码
greenplumn CExpressionPreprocessor 源码
greenplumn CExpressionUtils 源码