remove CSV restriction

This commit is contained in:
Nikita Mikhaylov 2020-06-12 02:08:14 +03:00 committed by nikitamikhaylov
parent 9f127a46c7
commit 3bc1affd21
2 changed files with 3 additions and 1 deletions

View File

@ -1993,6 +1993,8 @@ private:
/// Received data block is immediately displayed to the user.
block_out_stream->flush();
std::this_thread::sleep_for(std::chrono::seconds(2));
/// Restore progress bar after data block.
if (clear_progess)
writeProgress();

View File

@ -236,7 +236,7 @@ BlockOutputStreamPtr FormatFactory::getOutput(const String & name,
bool parallel_formatting = true;
if (parallel_formatting && name == "CSV")
if (parallel_formatting)
{
const auto & output_getter = getCreators(name).output_processor_creator;
if (!output_getter)