#pragma once #include #include #include #include namespace DB { /** Поток для ввода данных в формате tsv. */ class TabSeparatedRowInputStream : public IRowInputStream { public: /** with_names - в первой строке заголовок с именами столбцов * with_types - на следующей строке заголовок с именами типов */ TabSeparatedRowInputStream(ReadBuffer & istr_, const Block & sample_, bool with_names_ = false, bool with_types_ = false); bool read(Row & row); void readPrefix(); private: ReadBuffer & istr; const Block sample; bool with_names; bool with_types; DataTypes data_types; }; }