Remove TSKVRowInputStream.

This commit is contained in:
Nikolai Kochetov 2019-08-02 19:59:50 +03:00
parent c336c514fb
commit f820fff794

View File

@ -44,7 +44,7 @@ try
BlockInputStreamFromRowInputStream block_input(row_input, sample, DEFAULT_INSERT_BLOCK_SIZE, 0, []{}, format_settings);
BlockOutputStreamPtr block_output = std::make_shared<OutputStreamToOutputFormat>(
std::make_shared<TabSeparatedRowOutputFormat>(out_buf, sample, false, false, format_settings), sample);
std::make_shared<TabSeparatedRowOutputFormat>(out_buf, sample, false, false, format_settings));
copyData(block_input, *block_output);
return 0;