greenplumn CXformImplementation 源码
greenplumn CXformImplementation 代码
文件路径:/src/backend/gporca/libgpopt/include/gpopt/xforms/CXformImplementation.h
//---------------------------------------------------------------------------
// Greenplum Database
// Copyright (C) 2009 Greenplum, Inc.
//
// @filename:
// CXformImplementation.h
//
// @doc:
// Base class for implementation transforms
//---------------------------------------------------------------------------
#ifndef GPOPT_CXformImplementation_H
#define GPOPT_CXformImplementation_H
#include "gpos/base.h"
#include "gpopt/xforms/CXform.h"
namespace gpopt
{
using namespace gpos;
//---------------------------------------------------------------------------
// @class:
// CXformImplementation
//
// @doc:
// base class for all implementations
//
//---------------------------------------------------------------------------
class CXformImplementation : public CXform
{
private:
public:
CXformImplementation(const CXformImplementation &) = delete;
// ctor
explicit CXformImplementation(CExpression *);
// dtor
~CXformImplementation() override;
// type of operator
BOOL
FImplementation() const override
{
GPOS_ASSERT(!FSubstitution() && !FExploration());
return true;
}
}; // class CXformImplementation
} // namespace gpopt
#endif // !GPOPT_CXformImplementation_H
// EOF
相关信息
相关文章
greenplumn CJoinOrderGreedy 源码
greenplumn CJoinOrderMinCard 源码
greenplumn CSubqueryHandler 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
7、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦