mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
26 lines
683 B
C++
26 lines
683 B
C++
#pragma once
|
|
|
|
#include <DataStreams/TabSeparatedRowOutputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** A stream for outputting data in tsv format, but without escaping individual values.
|
|
* (That is, the output is irreversible.)
|
|
*/
|
|
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 IColumn & column, const IDataType & type, size_t row_num) override
|
|
{
|
|
type.serializeText(column, row_num, ostr);
|
|
}
|
|
};
|
|
|
|
}
|
|
|