greenplumn CXformPushGbWithHavingBelowJoin 代码
文件路径:/src/backend/gporca/libgpopt/src/xforms/CXformPushGbWithHavingBelowJoin.cpp
/---------------------------------------------------------------------------
/ Greenplum Database
/ Copyright (C) 2012 EMC Corp.
/
/ @filename:
/ CXformPushGbWithHavingBelowJoin.cpp
/
/ @doc:
/ Implementation of pushing group by below join transform
/---------------------------------------------------------------------------
#include "gpopt/xforms/CXformPushGbWithHavingBelowJoin.h"
#include "gpos/base.h"
#include "gpopt/operators/CLogicalGbAgg.h"
#include "gpopt/operators/CLogicalInnerJoin.h"
#include "gpopt/operators/CLogicalSelect.h"
#include "gpopt/operators/CPatternLeaf.h"
#include "gpopt/xforms/CXformUtils.h"
using namespace gpopt;
/---------------------------------------------------------------------------
/ @function:
/ CXformPushGbWithHavingBelowJoin::CXformPushGbWithHavingBelowJoin
/
/ @doc:
/ Ctor
/
/---------------------------------------------------------------------------
CXformPushGbWithHavingBelowJoin::CXformPushGbWithHavingBelowJoin(
CMemoryPool *mp)
: / pattern
CXformExploration(GPOS_NEW(mp) CExpression(
mp, GPOS_NEW(mp) CLogicalSelect(mp),
GPOS_NEW(mp) CExpression(
mp, GPOS_NEW(mp) CLogicalGbAgg(mp),
GPOS_NEW(mp) CExpression(
mp, GPOS_NEW(mp) CLogicalInnerJoin(mp),
GPOS_NEW(mp) CExpression(
mp, GPOS_NEW(mp) CPatternLeaf(mp)), / join outer child
GPOS_NEW(mp) CExpression(
mp, GPOS_NEW(mp) CPatternLeaf(mp)), / join inner child
GPOS_NEW(mp) CExpression(
mp, GPOS_NEW(mp) CPatternTree(mp)) / join predicate
),
GPOS_NEW(mp) CExpression(
mp, GPOS_NEW(mp) CPatternTree(mp)) / scalar project list
),
GPOS_NEW(mp)
CExpression(mp, GPOS_NEW(mp) CPatternLeaf(mp)) / Having clause
))
{
}
/---------------------------------------------------------------------------
/ @function:
/ CXformPushGbWithHavingBelowJoin::Exfp
/
/ @doc:
/ Compute xform promise for a given expression handle;
/ we only push down global aggregates
/
/---------------------------------------------------------------------------
CXform::EXformPromise
CXformPushGbWithHavingBelowJoin::Exfp(CExpressionHandle & / exprhdl
) const
{
return CXform::ExfpHigh;
}
/---------------------------------------------------------------------------
/ @function:
/ CXformPushGbWithHavingBelowJoin::Transform
/
/ @doc:
/ Actual transformation
/
/---------------------------------------------------------------------------
void
CXformPushGbWithHavingBelowJoin::Transform(CXformContext *pxfctxt,
CXformResult *pxfres,
CExpression *pexpr) const
{
GPOS_ASSERT(nullptr != pxfctxt);
GPOS_ASSERT(FPromising(pxfctxt->Pmp(), this, pexpr));
GPOS_ASSERT(FCheckPattern(pexpr));
CMemoryPool *mp = pxfctxt->Pmp();
CExpression *pexprGb = (*pexpr)[0];
CLogicalGbAgg *popGbAgg = CLogicalGbAgg::PopConvert(pexprGb->Pop());
if (!popGbAgg->FGlobal())
{
/ xform only applies to global aggs
return;
}
CExpression *pexprResult = CXformUtils::PexprPushGbBelowJoin(mp, pexpr);
if (nullptr != pexprResult)
{
/ add alternative to results
pxfres->Add(pexprResult);
}
}
/ EOF
相关信息
相关文章
greenplumn CJoinOrderGreedy 源码
greenplumn CJoinOrderMinCard 源码
greenplumn CSubqueryHandler 源码