mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Fix style and tests
This commit is contained in:
parent
625962fb59
commit
e5588b94aa
@ -254,7 +254,7 @@ Block MergeTreeDataWriter::mergeBlock(const Block & block, SortDescription sort_
|
||||
IMergingAlgorithm::Status status = merging_algorithm->merge();
|
||||
while (!status.is_finished)
|
||||
status = merging_algorithm->merge();
|
||||
|
||||
|
||||
/// Merged Block is sorted and we don't need to use permutation anymore
|
||||
*permutation = nullptr;
|
||||
|
||||
|
@ -8,7 +8,8 @@ from helpers.test_tools import TSV
|
||||
|
||||
cluster = ClickHouseCluster(__file__)
|
||||
instance = cluster.add_instance('instance',
|
||||
main_configs=['configs/graphite_rollup.xml'])
|
||||
main_configs=['configs/graphite_rollup.xml'],
|
||||
user_configs=["configs/users.xml"])
|
||||
q = instance.query
|
||||
|
||||
|
||||
|
@ -1,5 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<yandex>
|
||||
<profiles>
|
||||
<default>
|
||||
<optimize_on_insert>0</optimize_on_insert>
|
||||
</default>
|
||||
</profiles>
|
||||
<users>
|
||||
<another>
|
||||
<password/>
|
||||
@ -10,4 +15,4 @@
|
||||
<quota>default</quota>
|
||||
</another>
|
||||
</users>
|
||||
</yandex>
|
||||
</yandex>
|
||||
|
@ -3,7 +3,6 @@
|
||||
<profiles>
|
||||
<default>
|
||||
<any_join_distinct_right_table_keys>1</any_join_distinct_right_table_keys>
|
||||
<optimize_on_insert>0</optimize_on_insert>
|
||||
</default>
|
||||
</profiles>
|
||||
<users>
|
||||
|
Loading…
Reference in New Issue
Block a user