Fix 01926_order_by_desc_limit test for 1MB HTTP buffers

This commit is contained in:
serxa 2024-06-19 18:17:18 +00:00
parent fe92c92ce6
commit fc8c103045

View File

@ -12,10 +12,10 @@ INSERT INTO order_by_desc SELECT number, repeat('a', 1024) FROM numbers(1024 * 3
OPTIMIZE TABLE order_by_desc FINAL;
SELECT s FROM order_by_desc ORDER BY u DESC LIMIT 10 FORMAT Null
SETTINGS max_memory_usage = '400M';
SETTINGS max_memory_usage = '600M';
SELECT s FROM order_by_desc ORDER BY u LIMIT 10 FORMAT Null
SETTINGS max_memory_usage = '400M';
SETTINGS max_memory_usage = '600M';
SYSTEM FLUSH LOGS;