greenplumn CJoinOrderTest 源码

2022-08-18 浏览 (339)

greenplumn CJoinOrderTest 代码

文件路径:/src/backend/gporca/server/include/unittest/gpopt/xforms/CJoinOrderTest.h

/---------------------------------------------------------------------------
/	Greenplum Database
/	Copyright (C) 2011 EMC Corp.
/
/	@filename:
/		CJoinOrderTest.h
/
/	@doc:
/		Tests for join ordering
/---------------------------------------------------------------------------
#ifndef GPOPT_CJoinOrderTest_H
#define GPOPT_CJoinOrderTest_H

#include "gpos/base.h"

#include "gpopt/operators/CExpression.h"

namespace gpopt
{
/---------------------------------------------------------------------------
/	@class:
/		CJoinOrderTest
/
/	@doc:
/		Tests for join ordering
/
/---------------------------------------------------------------------------
class CJoinOrderTest
{
private:
	/ counter used to mark last successful test
	static ULONG m_ulTestCounter;

public:
	/ unittests
	static GPOS_RESULT EresUnittest();
	static GPOS_RESULT EresUnittest_ExpandMinCard();
	static GPOS_RESULT EresUnittest_RunTests();

};	/ class CJoinOrderTest
}  / namespace gpopt


#endif	/ !GPOPT_CJoinOrderTest_H

/ EOF

相关信息

greenplumn 源码目录

相关文章

greenplumn CDecorrelatorTest 源码

greenplumn CSubqueryHandlerTest 源码

greenplumn CXformFactoryTest 源码

greenplumn CXformRightOuterJoin2HashJoinTest 源码

greenplumn CXformTest 源码

^