summaryrefslogtreecommitdiff
path: root/mysql-test/main/func_regexp_pcre.result
diff options
context:
space:
mode:
authorNikita Malyavin <nikitamalyavin@gmail.com>2021-03-03 00:16:27 +0300
committerNikita Malyavin <nikitamalyavin@gmail.com>2021-03-10 17:46:19 +0300
commite0c940aa565c6d8527f33162061d76b156eb2c6e (patch)
tree562b80391aedae12171954e21058a72c6e83ed3d /mysql-test/main/func_regexp_pcre.result
parentdcf0333f7fea1d35e0e9f68fe26a0259a2890b35 (diff)
downloadmariadb-git-fk_in_progress.tar.gz
Add referenced table to prelocking list during CREATE TABLE with FKfk_in_progress
Diffstat (limited to 'mysql-test/main/func_regexp_pcre.result')
-rw-r--r--mysql-test/main/func_regexp_pcre.result20
1 files changed, 12 insertions, 8 deletions
diff --git a/mysql-test/main/func_regexp_pcre.result b/mysql-test/main/func_regexp_pcre.result
index 3b0688fc70e..771e22b3155 100644
--- a/mysql-test/main/func_regexp_pcre.result
+++ b/mysql-test/main/func_regexp_pcre.result
@@ -526,31 +526,35 @@ c
b
SELECT REGEXP_REPLACE('a\rb','(*LF)(?m)^a$','c');
REGEXP_REPLACE('a\rb','(*LF)(?m)^a$','c')
-a b
+a
+b
SELECT REGEXP_REPLACE('a\rb','(*CR)(?m)^a$','c');
REGEXP_REPLACE('a\rb','(*CR)(?m)^a$','c')
-c b
+c
+b
SELECT REGEXP_REPLACE('a\rb','(*CRLF)(?m)^a$','c');
REGEXP_REPLACE('a\rb','(*CRLF)(?m)^a$','c')
-a b
+a
+b
SELECT REGEXP_REPLACE('a\rb','(*ANYCRLF)(?m)^a$','c');
REGEXP_REPLACE('a\rb','(*ANYCRLF)(?m)^a$','c')
-c b
+c
+b
SELECT REGEXP_REPLACE('a\r\nb','(*LF)(?m)^a$','c');
REGEXP_REPLACE('a\r\nb','(*LF)(?m)^a$','c')
-a
+a
b
SELECT REGEXP_REPLACE('a\r\nb','(*CR)(?m)^a$','c');
REGEXP_REPLACE('a\r\nb','(*CR)(?m)^a$','c')
-c
+c
b
SELECT REGEXP_REPLACE('a\r\nb','(*CRLF)(?m)^a$','c');
REGEXP_REPLACE('a\r\nb','(*CRLF)(?m)^a$','c')
-c
+c
b
SELECT REGEXP_REPLACE('a\r\nb','(*ANYCRLF)(?m)^a$','c');
REGEXP_REPLACE('a\r\nb','(*ANYCRLF)(?m)^a$','c')
-c
+c
b
SELECT REGEXP_REPLACE('aa','(a)\\g1','b');
REGEXP_REPLACE('aa','(a)\\g1','b')