greenplumn CContradictionTest 源码

2022-08-18 浏览 (306)

greenplumn CContradictionTest 代码

文件路径:/src/backend/gporca/server/include/unittest/gpopt/operators/CContradictionTest.h

/---------------------------------------------------------------------------
/	Greenplum Database
/	Copyright (C) 2012 EMC Corp.
/
/	@filename:
/		CContradictionTest.h
/
/	@doc:
/		Test for contradiction detection
/---------------------------------------------------------------------------
#ifndef GPOPT_CContradictionTest_H
#define GPOPT_CContradictionTest_H

#include "gpos/base.h"

namespace gpopt
{
using namespace gpos;

/---------------------------------------------------------------------------
/	@class:
/		CContradictionTest
/
/	@doc:
/		Unittests
/
/---------------------------------------------------------------------------
class CContradictionTest
{
public:
	/ unittests
	static GPOS_RESULT EresUnittest();
	static GPOS_RESULT EresUnittest_Constraint();

};	/ class CContradictionTest
}  / namespace gpopt

#endif	/ !GPOPT_CContradictionTest_H

/ EOF

相关信息

greenplumn 源码目录

相关文章

greenplumn CExpressionPreprocessorTest 源码

greenplumn CExpressionTest 源码

greenplumn CLogicalGbAggTest 源码

greenplumn CPredicateUtilsTest 源码

greenplumn CScalarIsDistinctFromTest 源码

^