mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
MDEV-14024 PCRE2.
Related changes in the server code.
This commit is contained in:
committed by
Sergei Golubchik
parent
ce70573f62
commit
9dadfdcde5
@@ -13,8 +13,8 @@ SELECT @@default_regex_flags;
|
||||
|
||||
SET default_regex_flags='UNKNOWN';
|
||||
ERROR 42000: Variable 'default_regex_flags' can't be set to the value of 'UNKNOWN'
|
||||
SET default_regex_flags=123;
|
||||
ERROR 42000: Variable 'default_regex_flags' can't be set to the value of '123'
|
||||
SET default_regex_flags=325;
|
||||
ERROR 42000: Variable 'default_regex_flags' can't be set to the value of '325'
|
||||
SET default_regex_flags=123.0;
|
||||
ERROR 42000: Incorrect argument type to variable 'default_regex_flags'
|
||||
SET default_regex_flags=123e0;
|
||||
@@ -31,7 +31,7 @@ DOTALL
|
||||
SET @@default_regex_flags=63;
|
||||
SELECT @@default_regex_flags;
|
||||
@@default_regex_flags
|
||||
DOTALL,DUPNAMES,EXTENDED,EXTRA,MULTILINE,UNGREEDY
|
||||
DOTALL,DUPNAMES,EXTENDED,EXTENDED_MORE,EXTRA,MULTILINE
|
||||
SET @@default_regex_flags='DOTALL';
|
||||
SELECT @@default_regex_flags;
|
||||
@@default_regex_flags
|
||||
|
Reference in New Issue
Block a user