dbms: fixed error with TabSeparatedRaw format [#CONV-2944].

This commit is contained in:
Alexey Milovidov 2012-10-10 18:51:52 +00:00
parent fc8b9ca281
commit 80084f0359

View File

@ -13,7 +13,7 @@ class TabSeparatedRawRowOutputStream : public TabSeparatedRowOutputStream
{ {
public: public:
TabSeparatedRawRowOutputStream(WriteBuffer & ostr_, const Block & sample_, bool with_names_ = false, bool with_types_ = false) TabSeparatedRawRowOutputStream(WriteBuffer & ostr_, const Block & sample_, bool with_names_ = false, bool with_types_ = false)
: TabSeparatedRowOutputStream(ostr, sample, with_names, with_types) {} : TabSeparatedRowOutputStream(ostr_, sample_, with_names_, with_types_) {}
void writeField(const Field & field) void writeField(const Field & field)
{ {