mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
handling. The problem was that parsing of nested regular expression involved recursive calls. Such recursion didn't take into account the amount of available stack space, which ended up leading to stack overflow crashes.
10 lines
213 B
Text
10 lines
213 B
Text
select 1;
|
|
1
|
|
1
|
|
SHOW VARIABLES like 'slave_skip_errors';
|
|
Variable_name Value
|
|
slave_skip_errors OFF
|
|
#
|
|
# Bug#58026: massive recursion and crash in regular expression handling
|
|
#
|
|
SELECT '1' RLIKE RPAD('1', 10000, '(');
|