greenplumn CXformJoin2IndexGetApply 源码

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

greenplumn CXformJoin2IndexGetApply 代码

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

//---------------------------------------------------------------------------
// Greenplum Database
// Copyright (c) 2020 VMware and affiliates, Inc.
//
// Transform a join into a non-bitmap index apply. Allow a variety of nodes on
// the inner side, including a mandatory get, plus optional select,
// project and aggregate nodes.
//---------------------------------------------------------------------------
#ifndef GPOPT_CXformJoin2IndexGetApply_H
#define GPOPT_CXformJoin2IndexGetApply_H

#include "gpos/base.h"

#include "gpopt/operators/CLogicalJoin.h"
#include "gpopt/operators/CPatternLeaf.h"
#include "gpopt/operators/CPatternNode.h"
#include "gpopt/xforms/CXformJoin2IndexApplyGeneric.h"

namespace gpopt
{
using namespace gpos;

class CXformJoin2IndexGetApply : public CXformJoin2IndexApplyGeneric
{
private:
public:
	CXformJoin2IndexGetApply(const CXformJoin2IndexGetApply &) = delete;

	// ctor
	explicit CXformJoin2IndexGetApply(CMemoryPool *mp)
		: CXformJoin2IndexApplyGeneric(mp, false)
	{
	}

	// dtor
	~CXformJoin2IndexGetApply() override = default;

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

	const CHAR *
	SzId() const override
	{
		return "CXformJoin2IndexGetApply";
	}

};	// class CXformJoin2IndexGetApply

}  // namespace gpopt

#endif	// !GPOPT_CXformJoin2IndexGetApply_H

// EOF

相关信息

greenplumn 源码目录

相关文章

greenplumn CDecorrelator 源码

greenplumn CJoinOrder 源码

greenplumn CJoinOrderDP 源码

greenplumn CJoinOrderDPv2 源码

greenplumn CJoinOrderGreedy 源码

greenplumn CJoinOrderMinCard 源码

greenplumn CSubqueryHandler 源码

greenplumn CXform 源码

greenplumn CXformAntiSemiJoinAntiSemiJoinNotInSwap 源码

greenplumn CXformAntiSemiJoinAntiSemiJoinSwap 源码

0  赞