greenplumn traceflags 代码
文件路径:/src/backend/gporca/libgpos/include/gpos/task/traceflags.h
/---------------------------------------------------------------------------
/ Greenplum Database
/ Copyright (C) 2008 Greenplum, Inc.
/
/ @filename:
/ traceflags.h
/
/ @doc:
/ enum of traceflags which can be used in a task's context
/---------------------------------------------------------------------------
#ifndef GPOS_traceflags_H
#define GPOS_traceflags_H
namespace gpos
{
enum ETraceFlag
{
/ reserve range 0-99999 for GPOS
/ test flag
EtraceTest = 0,
/ disable printing memory leaks
EtraceDisablePrintMemoryLeak = 100,
/ dump leaked memory
EtracePrintMemoryLeakDump = 101,
/ print stack trace of leaked memory allocation
EtracePrintMemoryLeakStackTrace = 102,
/ test memory pools for internal leaks
EtraceTestMemoryPools = 103,
/ print exception on raise to stderr
EtracePrintExceptionOnRaise = 104,
EtraceSentinel
};
}
#endif / ! GPOS_traceflags_H
/ EOF
相关信息
相关文章
greenplumn CAutoSuspendAbort 源码
greenplumn CTaskLocalStorage 源码
greenplumn CTaskLocalStorageObject 源码