Merge pull request #48952 from ClickHouse/Avogar-patch-1

Fix flaky 02706_arrow_different_dictionaries
This commit is contained in:
robot-ch-test-poll2 2023-04-20 02:33:52 +02:00 committed by GitHub
commit 3bd38d1bb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View File

@ -1,20 +1,20 @@
0
0
1
2
3
4
5
6
7
8
9
0
1
2
2
3
3
4
4
5
5
6
6
7
7
8
8
9
9

View File

@ -5,5 +5,5 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CURDIR"/../shell_config.sh
$CLICKHOUSE_LOCAL -q "select toLowCardinality(toString(number % 10)) as x from numbers(20) format Arrow settings max_block_size=7, output_format_arrow_low_cardinality_as_dictionary=1" | $CLICKHOUSE_LOCAL -q "select * from table" --input-format='Arrow'
$CLICKHOUSE_LOCAL -q "select toLowCardinality(toString(number % 10)) as x from numbers(20) format Arrow settings max_block_size=7, output_format_arrow_low_cardinality_as_dictionary=1" | $CLICKHOUSE_LOCAL -q "select * from table order by x" --input-format='Arrow'