Skip to content

Commit 57d68a7

Browse files
committed
Stateless tests: fix flaky tests in parallel replicas job
1 parent 8c1d83d commit 57d68a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/queries/0_stateless/03216_arrayWithConstant_limits.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ SELECT arrayWithConstant(96142475, ['qMUF']); -- { serverError TOO_LARGE_ARRAY_S
22
SELECT arrayWithConstant(100000000, materialize([[[[[[[[[['Hello, world!']]]]]]]]]])); -- { serverError TOO_LARGE_ARRAY_SIZE }
33
SELECT length(arrayWithConstant(10000000, materialize([[[[[[[[[['Hello world']]]]]]]]]])));
44

5-
CREATE TEMPORARY TABLE args (value Array(Int)) ENGINE=Memory AS SELECT [1, 1, 1, 1] as value FROM numbers(1, 100);
5+
CREATE TABLE args (value Array(Int)) ENGINE=Memory AS SELECT [1, 1, 1, 1] as value FROM numbers(1, 100);
66
SELECT length(arrayWithConstant(1000000, value)) FROM args FORMAT NULL;

0 commit comments

Comments
 (0)