mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
Bug#16320 XML: extractvalue() won't accept names containing underscores
added '_' to allowed tag body symbols
mysql-test/r/xml.result:
Bug#16320 XML: extractvalue() won't accept names containing underscores
test case
mysql-test/t/xml.test:
Bug#16320 XML: extractvalue() won't accept names containing underscores
test case
This commit is contained in:
parent
e6ef97c484
commit
0466a90944
3 changed files with 9 additions and 1 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue