1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

fix the test to be independent from the stack size

This commit is contained in:
Sergei Golubchik
2014-02-05 17:27:32 +01:00
parent 2ab48b44da
commit b25951cc5e
2 changed files with 2 additions and 3 deletions

View File

@ -6,6 +6,7 @@ slave_skip_errors OFF
# Bug#58026: massive recursion and crash in regular expression handling
#
SELECT '1' RLIKE RPAD('1', 10000, '(');
Got one of the listed errors
#
# WL#4284: Transactional DDL locking
#

View File

@ -18,10 +18,8 @@ SHOW VARIABLES like 'slave_skip_errors';
--echo # Bug#58026: massive recursion and crash in regular expression handling
--echo #
--disable_result_log
--error ER_STACK_OVERRUN_NEED_MORE
--error ER_STACK_OVERRUN_NEED_MORE,ER_REGEXP_ERROR
SELECT '1' RLIKE RPAD('1', 10000, '(');
--enable_result_log
# End of 5.1 tests