ClickHouse/dbms/include/DB/DataStreams/TabSeparatedRawRowOutputStream.h

27 lines
715 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <DB/DataStreams/TabSeparatedRowOutputStream.h>
namespace DB
{
/** Поток для вывода данных в формате tsv, но без эскейпинга отдельных значений.
* (То есть - вывод необратимый.)
*/
class TabSeparatedRawRowOutputStream : public TabSeparatedRowOutputStream
{
public:
TabSeparatedRawRowOutputStream(WriteBuffer & ostr_, const Block & sample_, bool with_names_ = false, bool with_types_ = false)
: TabSeparatedRowOutputStream(ostr_, sample_, with_names_, with_types_) {}
void writeField(const Field & field) override
{
data_types[field_number]->serializeText(field, ostr);
++field_number;
}
};
}