greenplumn CXformLeftOuterJoin2HashJoin 源码
greenplumn CXformLeftOuterJoin2HashJoin 代码
文件路径:/src/backend/gporca/libgpopt/include/gpopt/xforms/CXformLeftOuterJoin2HashJoin.h
//---------------------------------------------------------------------------
// Greenplum Database
// Copyright (C) 2012 EMC Corp.
//
// @filename:
// CXformLeftOuterJoin2HashJoin.h
//
// @doc:
// Transform left outer join to left outer hash join
//---------------------------------------------------------------------------
#ifndef GPOPT_CXformLeftOuterJoin2HashJoin_H
#define GPOPT_CXformLeftOuterJoin2HashJoin_H
#include "gpos/base.h"
#include "gpopt/xforms/CXformImplementation.h"
namespace gpopt
{
using namespace gpos;
//---------------------------------------------------------------------------
// @class:
// CXformLeftOuterJoin2HashJoin
//
// @doc:
// Transform left outer join to left outer hash join
//
//---------------------------------------------------------------------------
class CXformLeftOuterJoin2HashJoin : public CXformImplementation
{
private:
public:
CXformLeftOuterJoin2HashJoin(const CXformLeftOuterJoin2HashJoin &) = delete;
// ctor
explicit CXformLeftOuterJoin2HashJoin(CMemoryPool *mp);
// dtor
~CXformLeftOuterJoin2HashJoin() override = default;
// ident accessors
EXformId
Exfid() const override
{
return ExfLeftOuterJoin2HashJoin;
}
// return a string for xform name
const CHAR *
SzId() const override
{
return "CXformLeftOuterJoin2HashJoin";
}
// 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 CXformLeftOuterJoin2HashJoin
} // namespace gpopt
#endif // !GPOPT_CXformLeftOuterJoin2HashJoin_H
// EOF
相关信息
相关文章
greenplumn CJoinOrderGreedy 源码
greenplumn CJoinOrderMinCard 源码
greenplumn CSubqueryHandler 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
7、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦