greenplumn CXformJoin2IndexGetApply 源码
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 CJoinOrderGreedy 源码
greenplumn CJoinOrderMinCard 源码
greenplumn CSubqueryHandler 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
7、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦