1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +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

@@ -546,3 +546,6 @@ select extractvalue('<a>A</a>','/<a>');
ERROR HY000: XPATH syntax error: '>'
select extractvalue('<a><b>b</b><b!>b!</b!></a>','//b!');
ERROR HY000: XPATH syntax error: '!'
select extractvalue('<A_B>A</A_B>','/A_B');
extractvalue('<A_B>A</A_B>','/A_B')
A