greenplumn CPhysicalRowTrigger 代码
文件路径:/src/backend/gporca/libgpopt/src/operators/CPhysicalRowTrigger.cpp
/---------------------------------------------------------------------------
/ Greenplum Database
/ Copyright (C) 2012 EMC Corp.
/
/ @filename:
/ CPhysicalRowTrigger.cpp
/
/ @doc:
/ Implementation of Physical row-level trigger operator
/---------------------------------------------------------------------------
#include "gpopt/operators/CPhysicalRowTrigger.h"
#include "gpos/base.h"
#include "gpopt/base/CDistributionSpecAny.h"
#include "gpopt/base/COptCtxt.h"
#include "gpopt/operators/CExpression.h"
#include "gpopt/operators/CExpressionHandle.h"
using namespace gpopt;
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::CPhysicalRowTrigger
/
/ @doc:
/ Ctor
/
/---------------------------------------------------------------------------
CPhysicalRowTrigger::CPhysicalRowTrigger(CMemoryPool *mp, IMDId *rel_mdid,
INT type, CColRefArray *pdrgpcrOld,
CColRefArray *pdrgpcrNew)
: CPhysical(mp),
m_rel_mdid(rel_mdid),
m_type(type),
m_pdrgpcrOld(pdrgpcrOld),
m_pdrgpcrNew(pdrgpcrNew),
m_pcrsRequiredLocal(nullptr)
{
GPOS_ASSERT(rel_mdid->IsValid());
GPOS_ASSERT(0 != type);
GPOS_ASSERT(nullptr != pdrgpcrNew || nullptr != pdrgpcrOld);
GPOS_ASSERT_IMP(nullptr != pdrgpcrNew && nullptr != pdrgpcrOld,
pdrgpcrNew->Size() == pdrgpcrOld->Size());
m_pcrsRequiredLocal = GPOS_NEW(mp) CColRefSet(mp);
if (nullptr != m_pdrgpcrOld)
{
m_pcrsRequiredLocal->Include(m_pdrgpcrOld);
}
if (nullptr != m_pdrgpcrNew)
{
m_pcrsRequiredLocal->Include(m_pdrgpcrNew);
}
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::~CPhysicalRowTrigger
/
/ @doc:
/ Dtor
/
/---------------------------------------------------------------------------
CPhysicalRowTrigger::~CPhysicalRowTrigger()
{
m_rel_mdid->Release();
CRefCount::SafeRelease(m_pdrgpcrOld);
CRefCount::SafeRelease(m_pdrgpcrNew);
m_pcrsRequiredLocal->Release();
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::PosRequired
/
/ @doc:
/ Compute required sort columns of the n-th child
/
/---------------------------------------------------------------------------
COrderSpec *
CPhysicalRowTrigger::PosRequired(CMemoryPool *mp,
CExpressionHandle &, /exprhdl,
COrderSpec *, /posRequired,
ULONG
#ifdef GPOS_DEBUG
child_index
#endif
,
CDrvdPropArray *, / pdrgpdpCtxt
ULONG / ulOptReq
) const
{
GPOS_ASSERT(0 == child_index);
return GPOS_NEW(mp) COrderSpec(mp);
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::PosDerive
/
/ @doc:
/ Derive sort order
/
/---------------------------------------------------------------------------
COrderSpec *
CPhysicalRowTrigger::PosDerive(CMemoryPool *mp,
CExpressionHandle & /exprhdl
) const
{
return GPOS_NEW(mp) COrderSpec(mp);
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::EpetOrder
/
/ @doc:
/ Return the enforcing type for order property based on this operator
/
/---------------------------------------------------------------------------
CEnfdProp::EPropEnforcingType
CPhysicalRowTrigger::EpetOrder(CExpressionHandle &, / exprhdl
const CEnfdOrder *
#ifdef GPOS_DEBUG
peo
#endif / GPOS_DEBUG
) const
{
GPOS_ASSERT(nullptr != peo);
GPOS_ASSERT(!peo->PosRequired()->IsEmpty());
return CEnfdProp::EpetRequired;
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::PcrsRequired
/
/ @doc:
/ Compute required columns of the n-th child;
/ we only compute required columns for the relational child;
/
/---------------------------------------------------------------------------
CColRefSet *
CPhysicalRowTrigger::PcrsRequired(CMemoryPool *mp,
CExpressionHandle &, / exprhdl,
CColRefSet *pcrsRequired,
ULONG
#ifdef GPOS_DEBUG
child_index
#endif / GPOS_DEBUG
,
CDrvdPropArray *, / pdrgpdpCtxt
ULONG / ulOptReq
)
{
GPOS_ASSERT(0 == child_index);
CColRefSet *pcrs = GPOS_NEW(mp) CColRefSet(mp, *m_pcrsRequiredLocal);
pcrs->Union(pcrsRequired);
return pcrs;
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::PdsRequired
/
/ @doc:
/ Compute required distribution of the n-th child
/
/---------------------------------------------------------------------------
CDistributionSpec *
CPhysicalRowTrigger::PdsRequired(CMemoryPool *mp, CExpressionHandle &exprhdl,
CDistributionSpec *pdsInput, ULONG child_index,
CDrvdPropArray *, / pdrgpdpCtxt
ULONG / ulOptReq
) const
{
GPOS_ASSERT(0 == child_index);
/ if expression has to execute on a single host then we need a gather
if (exprhdl.NeedsSingletonExecution())
{
return PdsRequireSingleton(mp, exprhdl, pdsInput, child_index);
}
return GPOS_NEW(mp) CDistributionSpecAny(this->Eopid());
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::PrsRequired
/
/ @doc:
/ Compute required rewindability of the n-th child
/
/---------------------------------------------------------------------------
CRewindabilitySpec *
CPhysicalRowTrigger::PrsRequired(CMemoryPool *mp, CExpressionHandle &exprhdl,
CRewindabilitySpec *prsRequired,
ULONG child_index,
CDrvdPropArray *, / pdrgpdpCtxt
ULONG / ulOptReq
) const
{
GPOS_ASSERT(0 == child_index);
return PrsPassThru(mp, exprhdl, prsRequired, child_index);
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::PcteRequired
/
/ @doc:
/ Compute required CTE map of the n-th child
/
/---------------------------------------------------------------------------
CCTEReq *
CPhysicalRowTrigger::PcteRequired(CMemoryPool *, /mp,
CExpressionHandle &, /exprhdl,
CCTEReq *pcter,
ULONG
#ifdef GPOS_DEBUG
child_index
#endif
,
CDrvdPropArray *, /pdrgpdpCtxt,
ULONG /ulOptReq
) const
{
GPOS_ASSERT(0 == child_index);
return PcterPushThru(pcter);
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::FProvidesReqdCols
/
/ @doc:
/ Check if required columns are included in output columns
/
/---------------------------------------------------------------------------
BOOL
CPhysicalRowTrigger::FProvidesReqdCols(CExpressionHandle &exprhdl,
CColRefSet *pcrsRequired,
ULONG / ulOptReq
) const
{
return FUnaryProvidesReqdCols(exprhdl, pcrsRequired);
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::PdsDerive
/
/ @doc:
/ Derive distribution
/
/---------------------------------------------------------------------------
CDistributionSpec *
CPhysicalRowTrigger::PdsDerive(CMemoryPool *, / mp
CExpressionHandle &exprhdl) const
{
return PdsDerivePassThruOuter(exprhdl);
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::PrsDerive
/
/ @doc:
/ Derive rewindability
/
/---------------------------------------------------------------------------
CRewindabilitySpec *
CPhysicalRowTrigger::PrsDerive(CMemoryPool *mp,
CExpressionHandle &exprhdl) const
{
return PrsDerivePassThruOuter(mp, exprhdl);
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::HashValue
/
/ @doc:
/ Operator specific hash function
/
/---------------------------------------------------------------------------
ULONG
CPhysicalRowTrigger::HashValue() const
{
ULONG ulHash =
gpos::CombineHashes(COperator::HashValue(), m_rel_mdid->HashValue());
ulHash = gpos::CombineHashes(ulHash, gpos::HashValue<INT>(&m_type));
if (nullptr != m_pdrgpcrOld)
{
ulHash =
gpos::CombineHashes(ulHash, CUtils::UlHashColArray(m_pdrgpcrOld));
}
if (nullptr != m_pdrgpcrNew)
{
ulHash =
gpos::CombineHashes(ulHash, CUtils::UlHashColArray(m_pdrgpcrNew));
}
return ulHash;
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::Matches
/
/ @doc:
/ Match operator
/
/---------------------------------------------------------------------------
BOOL
CPhysicalRowTrigger::Matches(COperator *pop) const
{
if (pop->Eopid() != Eopid())
{
return false;
}
CPhysicalRowTrigger *popRowTrigger = CPhysicalRowTrigger::PopConvert(pop);
CColRefArray *pdrgpcrOld = popRowTrigger->PdrgpcrOld();
CColRefArray *pdrgpcrNew = popRowTrigger->PdrgpcrNew();
return m_rel_mdid->Equals(popRowTrigger->GetRelMdId()) &&
m_type == popRowTrigger->GetType() &&
CUtils::Equals(m_pdrgpcrOld, pdrgpcrOld) &&
CUtils::Equals(m_pdrgpcrNew, pdrgpcrNew);
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::EpetRewindability
/
/ @doc:
/ Return the enforcing type for rewindability property based on this operator
/
/---------------------------------------------------------------------------
CEnfdProp::EPropEnforcingType
CPhysicalRowTrigger::EpetRewindability(CExpressionHandle &exprhdl,
const CEnfdRewindability *per) const
{
CRewindabilitySpec *prs = CDrvdPropPlan::Pdpplan(exprhdl.Pdp())->Prs();
if (per->FCompatible(prs))
{
/ required rewindability is already provided
return CEnfdProp::EpetUnnecessary;
}
/ always force spool to be on top of trigger
return CEnfdProp::EpetRequired;
}
/---------------------------------------------------------------------------
/ @function:
/ CPhysicalRowTrigger::OsPrint
/
/ @doc:
/ debug print
/
/---------------------------------------------------------------------------
IOstream &
CPhysicalRowTrigger::OsPrint(IOstream &os) const
{
if (m_fPattern)
{
return COperator::OsPrint(os);
}
os << SzId() << " (Type: " << m_type << ")";
if (nullptr != m_pdrgpcrOld)
{
os << ", Old Columns: [";
CUtils::OsPrintDrgPcr(os, m_pdrgpcrOld);
os << "]";
}
if (nullptr != m_pdrgpcrNew)
{
os << ", New Columns: [";
CUtils::OsPrintDrgPcr(os, m_pdrgpcrNew);
os << "]";
}
return os;
}
/ EOF
相关信息
相关文章
greenplumn CExpressionFactorizer 源码
greenplumn CExpressionHandle 源码
greenplumn CExpressionPreprocessor 源码
greenplumn CExpressionUtils 源码