Merge pull request #43408 from azat/tests/fix-01926_order_by_desc_limit

Fix flaky 01926_order_by_desc_limit
This commit is contained in:
Han Fei 2022-11-21 11:58:33 +01:00 committed by GitHub
commit 874a1a9d83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,5 +21,5 @@ SYSTEM FLUSH LOGS;
SELECT read_rows < 110000 FROM system.query_log
WHERE type = 'QueryFinish' AND current_database = currentDatabase()
AND event_time > now() - INTERVAL 10 SECOND
AND event_date >= yesterday()
AND lower(query) LIKE lower('SELECT s FROM order_by_desc ORDER BY u%');