1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-34054 Memory leak in Window_func_runner::exec after encountering "temporary space limit reached" error

This commit is contained in:
Monty
2024-05-02 19:07:41 +03:00
committed by Sergei Golubchik
parent 178ab560ae
commit 7d1467e9e9
3 changed files with 29 additions and 4 deletions

View File

@ -250,4 +250,13 @@ connection default;
disconnect c1;
set @@global.max_tmp_total_space_usage=@save_max_tmp_total_space_usage;
--echo #
--echo # MDEV-34054
--echo # Memory leak in Window_func_runner::exec after encountering
--echo # "temporary space limit reached" error
SET max_tmp_session_space_usage= 64*1024;
--error 200
SELECT MIN(VARIABLE_VALUE) OVER (), NTILE(1) OVER (), MAX(VARIABLE_NAME) OVER () FROM information_schema.SESSION_STATUS;
--echo # End of 11.5 tests