greenplumn CXformSelect2DynamicIndexGet 源码
greenplumn CXformSelect2DynamicIndexGet 代码
文件路径:/src/backend/gporca/libgpopt/include/gpopt/xforms/CXformSelect2DynamicIndexGet.h
//---------------------------------------------------------------------------
// Greenplum Database
// Copyright (C) 2012 EMC Corp.
//
// @filename:
// CXformSelect2DynamicIndexGet.h
//
// @doc:
// Transform select over partitioned table into a dynamic index get
//---------------------------------------------------------------------------
#ifndef GPOPT_CXformSelect2DynamicIndexGet_H
#define GPOPT_CXformSelect2DynamicIndexGet_H
#include "gpos/base.h"
#include "gpopt/operators/CLogicalGet.h"
#include "gpopt/xforms/CXformExploration.h"
namespace gpopt
{
using namespace gpos;
//---------------------------------------------------------------------------
// @class:
// CXformSelect2DynamicIndexGet
//
// @doc:
// Transform select over a partitioned table into a dynamic index get
//
//---------------------------------------------------------------------------
class CXformSelect2DynamicIndexGet : public CXformExploration
{
private:
// private copy ctor
CXformSelect2DynamicIndexGet(const CXformSelect2DynamicIndexGet &);
// return the column reference set of included / key columns
CColRefSet *GetColRefSet(CMemoryPool *mp, CLogicalGet *popGet,
const IMDIndex *pmdindex,
BOOL fIncludedColumns) const;
public:
// ctor
explicit CXformSelect2DynamicIndexGet(CMemoryPool *mp);
// dtor
~CXformSelect2DynamicIndexGet() override = default;
// ident accessors
EXformId
Exfid() const override
{
return ExfSelect2DynamicIndexGet;
}
// xform name
const CHAR *
SzId() const override
{
return "CXformSelect2DynamicIndexGet";
}
// 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 CXformSelect2DynamicIndexGet
} // namespace gpopt
#endif // !GPOPT_CXformSelect2DynamicIndexGet_H
// EOF
相关信息
相关文章
greenplumn CJoinOrderGreedy 源码
greenplumn CJoinOrderMinCard 源码
greenplumn CSubqueryHandler 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
7、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦