1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Bug#16320 XML: extractvalue() won't accept names containing underscores

added '_' to allowed tag body symbols
This commit is contained in:
gluh@eagle.intranet.mysql.r18.ru
2006-03-01 10:36:22 +04:00
parent b2120c7cce
commit 701110c943
3 changed files with 9 additions and 1 deletions

View File

@@ -243,3 +243,8 @@ select extractvalue('<a>A</a>','/<a>');
#
--error 1105
select extractvalue('<a><b>b</b><b!>b!</b!></a>','//b!');
#
# Bug #16320 XML: extractvalue() won't accept names containing underscores
#
select extractvalue('<A_B>A</A_B>','/A_B');