3715 Alexander Barkov 2011-03-01 [merge]
Merging from mysql-5.5
modified:
mysql-test/r/xml.result
mysql-test/t/xml.test
strings/xml.c
3714 Magne Mahre 2011-03-01 [merge]
Merge from mysql-5.5. No conflicts
modified:
mysys/my_init.c
mysys/my_thr_init.c
=== modified file 'mysql-test/r/xml.result'
--- a/mysql-test/r/xml.result 2011-01-18 06:53:45 +0000
+++ b/mysql-test/r/xml.result 2011-03-01 14:47:01 +0000
@@ -1124,6 +1124,14 @@ Warning 1525 Incorrect XML value: 'parse
SELECT UPDATEXML(CONVERT(_latin1'<!--' USING utf8),'1','1');
UPDATEXML(CONVERT(_latin1'<!--' USING utf8),'1','1')
NULL
+#
+# Bug#11766725 (bug#59901): EXTRACTVALUE STILL BROKEN AFTER FIX FOR BUG #44332
+#
+SELECT ExtractValue(CONVERT('<\"', BINARY(10)), 1);
+ExtractValue(CONVERT('<\"', BINARY(10)), 1)
+NULL
+Warnings:
+Warning 1525 Incorrect XML value: 'parse error at line 1 pos 11: STRING unexpected (ident or '/' wanted)'
End of 5.1 tests
#
# Start of 5.5 tests
=== modified file 'mysql-test/t/xml.test'
--- a/mysql-test/t/xml.test 2011-01-18 06:53:45 +0000
+++ b/mysql-test/t/xml.test 2011-03-01 14:47:01 +0000
@@ -646,6 +646,11 @@ SELECT EXTRACTVALUE('', LPAD(0.1111E-15,
SELECT UPDATEXML(CONVERT(_latin1'<' USING utf8),'1','1');
SELECT UPDATEXML(CONVERT(_latin1'<!--' USING utf8),'1','1');
+--echo #
+--echo # Bug#11766725 (bug#59901): EXTRACTVALUE STILL BROKEN AFTER FIX FOR BUG #44332
+--echo #
+SELECT ExtractValue(CONVERT('<\"', BINARY(10)), 1);
+
--echo End of 5.1 tests
=== modified file 'strings/xml.c'
--- a/strings/xml.c 2011-01-19 13:17:52 +0000
+++ b/strings/xml.c 2011-03-01 12:30:18 +0000
@@ -165,11 +165,16 @@ static int my_xml_scan(MY_XML_PARSER *p,
}
else if ( (p->cur[0] == '"') || (p->cur[0] == '\'') )
{
+ /*
+ "string" or 'string' found.
+ Scan until the closing quote/doublequote, or until the END-OF-INPUT.
+ */
p->cur++;
for (; ( p->cur < p->end ) && (p->cur[0] != a->beg[0]); p->cur++)
{}
a->end=p->cur;
- if (a->beg[0] == p->cur[0])p->cur++;
+ if (p->cur < p->end) /* Closing quote or doublequote has been found */
+ p->cur++;
a->beg++;
if (!(p->flags & MY_XML_FLAG_SKIP_TEXT_NORMALIZATION))
my_xml_norm_text(a);
No bundle (reason: useless for push emails).
| Thread |
|---|
| • bzr push into mysql-trunk branch (alexander.barkov:3714 to 3715) | Alexander Barkov | 1 Mar |