mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Fix style and typo
This commit is contained in:
parent
d5cda328e0
commit
9ad87f9917
@ -49,8 +49,8 @@ Chunk ParquetBlockInputFormat::generate()
|
||||
if (is_stopped)
|
||||
return {};
|
||||
|
||||
for (; row_group_current < row_group_total && skip_row_groups.contains(row_group_current); ++row_group_current)
|
||||
;
|
||||
while (row_group_current < row_group_total && skip_row_groups.contains(row_group_current))
|
||||
++row_group_current;
|
||||
|
||||
if (row_group_current >= row_group_total)
|
||||
return res;
|
||||
@ -79,6 +79,7 @@ Chunk ParquetBlockInputFormat::generate()
|
||||
if (format_settings.defaults_for_omitted_fields)
|
||||
for (const auto & column_idx : missing_columns)
|
||||
block_missing_values.setBits(column_idx, res.getNumRows());
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
|
@ -1,12 +1,11 @@
|
||||
#!/usr/bin/env bash
|
||||
# Tags: replica, no-parallel, no-fasttest
|
||||
|
||||
|
||||
# This test checks mutations concurrent execution with concurrent inserts.
|
||||
# There was a bug in mutations finalization, when mutation finishes not after all
|
||||
# MUTATE_PART tasks execution, but after GET of already mutated part from other replica.
|
||||
# To test it we stop some replicas to delay fetch of required parts for mutation.
|
||||
# Since our replication queue executing tasks concurrently it may happen, that we dowload already mutated
|
||||
# Since our replication queue executing tasks concurrently it may happen, that we download already mutated
|
||||
# part before source part.
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user