From 298c0dd673be2c02cd9d815a633f71bd3018173e Mon Sep 17 00:00:00 2001 From: Amos Bird Date: Tue, 26 Apr 2022 15:06:50 +0800 Subject: [PATCH] Fix flaky test --- tests/queries/0_stateless/01460_mark_inclusion_search_crash.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/queries/0_stateless/01460_mark_inclusion_search_crash.sql b/tests/queries/0_stateless/01460_mark_inclusion_search_crash.sql index 148ecdab490..86c4d988c38 100644 --- a/tests/queries/0_stateless/01460_mark_inclusion_search_crash.sql +++ b/tests/queries/0_stateless/01460_mark_inclusion_search_crash.sql @@ -7,6 +7,6 @@ INSERT INTO pk (x, y, z) VALUES (1, 11, 1235), (2, 11, 4395), (3, 22, 3545), (4, SET max_block_size = 1; SET max_rows_to_read = 5; -SELECT toUInt32(x), y, z FROM pk WHERE (x >= toDateTime(100000)) AND (x <= toDateTime(3)); +SELECT toUInt32(x), y, z FROM pk WHERE (x >= toDateTime(100000)) AND (x <= toDateTime(90000)); DROP TABLE IF EXISTS pk;