From cf195ed832218562043045d7539bd4d9cd452019 Mon Sep 17 00:00:00 2001 From: alesapin Date: Wed, 19 Sep 2018 20:52:09 +0300 Subject: [PATCH] Fix test --- .../queries/0_stateless/00719_insert_block_without_column.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/tests/queries/0_stateless/00719_insert_block_without_column.sh b/dbms/tests/queries/0_stateless/00719_insert_block_without_column.sh index 04ccd09fd89..87c15f3e11e 100755 --- a/dbms/tests/queries/0_stateless/00719_insert_block_without_column.sh +++ b/dbms/tests/queries/0_stateless/00719_insert_block_without_column.sh @@ -8,7 +8,7 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) ${CLICKHOUSE_CLIENT} --query "select number as SomeID, number+1 as OtherID from system.numbers limit 1000 into outfile '${CLICKHOUSE_TMP}/test_squashing_block_without_column.out' format Native" ${CLICKHOUSE_CLIENT} --query "drop table if exists test.squashed_numbers" -${CLICKHOUSE_CLIENT} --query "create table test.squashed_numbers (SomeID UInt8, DifferentID UInt8, OtherID UInt8) engine Memory" +${CLICKHOUSE_CLIENT} --query "create table test.squashed_numbers (SomeID UInt64, DifferentID UInt64, OtherID UInt64) engine Memory" cat ${CLICKHOUSE_TMP}/test_squashing_block_without_column.out | ${CLICKHOUSE_CLIENT} --query "insert into test.squashed_numbers format Native"