mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Merge branch 'github/10.0' into 10.1
This commit is contained in:
@@ -1274,5 +1274,17 @@ c1 c2
|
||||
2 b2
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# MDEV-15118 ExtractValue(xml,something_complex) does not work
|
||||
#
|
||||
CREATE TABLE t1 (a TEXT);
|
||||
INSERT INTO t1 VALUES (CONCAT('<a>aaa</a>'));
|
||||
SELECT ExtractValue(a, '/a') AS a FROM t1;
|
||||
a
|
||||
aaa
|
||||
SELECT ExtractValue(a, FROM_BASE64(TO_BASE64('/a'))) AS a FROM t1;
|
||||
a
|
||||
aaa
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# End of 10.0 tests
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user