greenplumn CDXLSections 源码

2022-08-18 浏览 (315)

greenplumn CDXLSections 代码

文件路径:/src/backend/gporca/libnaucrates/include/naucrates/dxl/xml/CDXLSections.h

/---------------------------------------------------------------------------
/	Greenplum Database
/	Copyright (C) 2011 EMC Corp.
/
/	@filename:
/		CDXLSections.h
/
/	@doc:
/		Section headers in DXL documents
/---------------------------------------------------------------------------
#ifndef GPDXL_CDXLSections_H
#define GPDXL_CDXLSections_H


#include "gpos/base.h"

using namespace gpos;

namespace gpdxl
{
class CDXLSections
{
public:
	/ DXL document header and footer
	static const WCHAR *m_wszDocumentHeader;
	static const WCHAR *m_wszDocumentFooter;

	/ Thread header and footer
	static const WCHAR *m_wszThreadHeaderTemplate;
	static const WCHAR *m_wszThreadFooter;

	/ Optimizer config header and footer
	static const WCHAR *m_wszOptimizerConfigHeader;
	static const WCHAR *m_wszOptimizerConfigFooter;

	/ Metadata section header and footer
	static const WCHAR *m_wszMetadataHeaderPrefix;
	static const WCHAR *m_wszMetadataHeaderSuffix;
	static const WCHAR *m_wszMetadataFooter;

	/ trace flags section prefix
	static const WCHAR *m_wszTraceFlagsSectionPrefix;

	/ trace flags section suffix
	static const WCHAR *m_wszTraceFlagsSectionSuffix;

	/ stack trace section header
	static const WCHAR *m_wszStackTraceHeader;

	/ stack trace section footer
	static const WCHAR *m_wszStackTraceFooter;
};
}  / namespace gpdxl

#endif	/ !GPDXL_CDXLSections_H

/ EOF

相关信息

greenplumn 源码目录

相关文章

greenplumn CDXLMemoryManager 源码

greenplumn CXMLSerializer 源码

greenplumn dxltokens 源码

^