greenplumn CXformRightOuterJoin2HashJoin 代码
文件路径:/src/backend/gporca/libgpopt/include/gpopt/xforms/CXformRightOuterJoin2HashJoin.h
/---------------------------------------------------------------------------
/ Greenplum Database
/ Copyright (c) 2020 VMware, Inc.
/
/ @filename:
/ CXformRightOuterJoin2HashJoin.h
/
/ @doc:
/ Transform left outer join to left outer hash join
/---------------------------------------------------------------------------
#ifndef GPOPT_CXformRightOuterJoin2HashJoin_H
#define GPOPT_CXformRightOuterJoin2HashJoin_H
#include "gpos/base.h"
#include "gpopt/xforms/CXformImplementation.h"
namespace gpopt
{
using namespace gpos;
/---------------------------------------------------------------------------
/ @class:
/ CXformRightOuterJoin2HashJoin
/
/ @doc:
/ Transform left outer join to left outer hash join
/
/---------------------------------------------------------------------------
class CXformRightOuterJoin2HashJoin : public CXformImplementation
{
private:
public:
CXformRightOuterJoin2HashJoin(const CXformRightOuterJoin2HashJoin &) =
delete;
/ ctor
explicit CXformRightOuterJoin2HashJoin(CMemoryPool *mp);
/ dtor
~CXformRightOuterJoin2HashJoin() override = default;
/ ident accessors
EXformId
Exfid() const override
{
return ExfRightOuterJoin2HashJoin;
}
/ return a string for xform name
const CHAR *
SzId() const override
{
return "CXformRightOuterJoin2HashJoin";
}
/ compute xform promise for a given expression handle
EXformPromise Exfp(CExpressionHandle &exprhdl) const override;
/ actual transform
void Transform(CXformContext *pxfctxt, CXformResult *pxfres,
CExpression *pexpr) const override;
}; / class CXformRightOuterJoin2HashJoin
} / namespace gpopt
#endif / !GPOPT_CXformRightOuterJoin2HashJoin_H
/ EOF
相关信息
相关文章
greenplumn CJoinOrderGreedy 源码
greenplumn CJoinOrderMinCard 源码
greenplumn CSubqueryHandler 源码