Remove redundant zero

This commit is contained in:
alesapin 2021-11-25 18:33:06 +03:00
parent 3929f00fd1
commit 6a76b6fbae
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
1500000 1500000 1500000 1500000 1500000 1500000
150000 150000 150000 150000 150000 150000
[['def']] [['','']]
0

View File

@ -8,7 +8,7 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
table="optimize_me_finally"
name="$CLICKHOUSE_DATABASE.$table"
res_rows=1500000 # >= vertical_merge_algorithm_min_rows_to_activate
res_rows=150000 # >= vertical_merge_algorithm_min_rows_to_activate
function get_num_parts {
$CLICKHOUSE_CLIENT -q "SELECT count() FROM system.parts WHERE active AND database='$CLICKHOUSE_DATABASE' AND table='$table'"