greenplumn CXformInnerJoin2HashJoin 源码

  • 2022-08-18
  • 浏览 (315)

greenplumn CXformInnerJoin2HashJoin 代码

文件路径:/src/backend/gporca/libgpopt/include/gpopt/xforms/CXformInnerJoin2HashJoin.h

//---------------------------------------------------------------------------
//	Greenplum Database
//	Copyright (C) 2011 EMC Corp.
//
//	@filename:
//		CXformInnerJoin2HashJoin.h
//
//	@doc:
//		Transform inner join to inner Hash Join
//---------------------------------------------------------------------------
#ifndef GPOPT_CXformInnerJoin2HashJoin_H
#define GPOPT_CXformInnerJoin2HashJoin_H

#include "gpos/base.h"

#include "gpopt/xforms/CXformImplementation.h"

namespace gpopt
{
using namespace gpos;

//---------------------------------------------------------------------------
//	@class:
//		CXformInnerJoin2HashJoin
//
//	@doc:
//		Transform inner join to inner Hash Join
//		Deprecated in favor of CXformImplementInnerJoin.
//
//---------------------------------------------------------------------------
class CXformInnerJoin2HashJoin : public CXformImplementation
{
private:
public:
	CXformInnerJoin2HashJoin(const CXformInnerJoin2HashJoin &) = delete;

	// ctor
	explicit CXformInnerJoin2HashJoin(CMemoryPool *mp);

	// dtor
	~CXformInnerJoin2HashJoin() override = default;

	// ident accessors
	EXformId
	Exfid() const override
	{
		return ExfInnerJoin2HashJoin;
	}

	// return a string for xform name
	const CHAR *
	SzId() const override
	{
		return "CXformInnerJoin2HashJoin";
	}

	// 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 CXformInnerJoin2HashJoin

}  // namespace gpopt


#endif	// !GPOPT_CXformInnerJoin2HashJoin_H

// EOF

相关信息

greenplumn 源码目录

相关文章

greenplumn CDecorrelator 源码

greenplumn CJoinOrder 源码

greenplumn CJoinOrderDP 源码

greenplumn CJoinOrderDPv2 源码

greenplumn CJoinOrderGreedy 源码

greenplumn CJoinOrderMinCard 源码

greenplumn CSubqueryHandler 源码

greenplumn CXform 源码

greenplumn CXformAntiSemiJoinAntiSemiJoinNotInSwap 源码

greenplumn CXformAntiSemiJoinAntiSemiJoinSwap 源码

0  赞