mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
remove CSV restriction
This commit is contained in:
parent
9f127a46c7
commit
3bc1affd21
@ -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();
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user