greenplumn COstreamStdString 代码
文件路径:/src/backend/gporca/libgpos/src/io/COstreamStdString.cpp
/---------------------------------------------------------------------------
/ Greenplum Database
/ Copyright (c) 2020 VMware, Inc. or its affiliates
/---------------------------------------------------------------------------
#include "gpos/io/COstreamStdString.h"
namespace gpos
{
COstreamStdString::COstreamStdString() : COstreamBasic(&m_oss)
{
}
std::wstring
COstreamStdString::Str() const
{
return m_oss.str();
}
} / namespace gpos