greenplumn CIOUtils 代码
文件路径:/src/backend/gporca/libgpopt/include/gpopt/base/CIOUtils.h
/---------------------------------------------------------------------------
/ Greenplum Database
/ Copyright (C) 2013 EMC Corp.
/
/ @filename:
/ CIOUtils.h
/
/ @doc:
/ Optimizer I/O utility functions
/---------------------------------------------------------------------------
#ifndef GPOPT_CIOUtils_H
#define GPOPT_CIOUtils_H
#include "gpos/base.h"
namespace gpopt
{
using namespace gpos;
/---------------------------------------------------------------------------
/ @class:
/ CIOUtils
/
/ @doc:
/ Optimizer I/O utility functions
/
/---------------------------------------------------------------------------
class CIOUtils
{
public:
/ dump given string to output file
static void Dump(CHAR *file_name, CHAR *sz);
}; / class CIOUtils
} / namespace gpopt
#endif / !GPOPT_CIOUtils_H
/ EOF
相关信息
相关文章
greenplumn CColConstraintsArrayMapper 源码