From 70ba4e16f8af8042f82d91cd1ea21f43817b80e9 Mon Sep 17 00:00:00 2001 From: Alexander Kuzmenkov Date: Fri, 10 Jul 2020 17:18:39 +0300 Subject: [PATCH] fixup --- tests/performance/decimal_aggregates.xml | 2 +- tests/performance/read_in_order_many_parts.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/performance/decimal_aggregates.xml b/tests/performance/decimal_aggregates.xml index 9c3f0c17464..119f3ac75bf 100644 --- a/tests/performance/decimal_aggregates.xml +++ b/tests/performance/decimal_aggregates.xml @@ -4,7 +4,7 @@ CREATE TABLE t (x UInt64, d32 Decimal32(3), d64 Decimal64(4), d128 Decimal128(5)) ENGINE = Memory - INSERT INTO t SELECT number AS x, x % 1000000 AS d32, x AS d64, x d128 FROM numbers_mt(1000000000) + INSERT INTO t SELECT number AS x, x % 1000000 AS d32, x AS d64, x d128 FROM numbers_mt(500000000) DROP TABLE IF EXISTS t SELECT min(d32), max(d32), argMin(x, d32), argMax(x, d32) FROM t diff --git a/tests/performance/read_in_order_many_parts.xml b/tests/performance/read_in_order_many_parts.xml index 3372d62194a..e346a66e1ce 100644 --- a/tests/performance/read_in_order_many_parts.xml +++ b/tests/performance/read_in_order_many_parts.xml @@ -10,8 +10,8 @@ parts - 200 - 2000 + 100 + 1000