diff options
author | Ramil Kalimullin <ramil@mysql.com> | 2010-11-22 12:21:10 +0300 |
---|---|---|
committer | Ramil Kalimullin <ramil@mysql.com> | 2010-11-22 12:21:10 +0300 |
commit | 65116d34089d977929f36542522e79d05786094d (patch) | |
tree | 855936cec6d3b0afd67eb17131c2c9c1133e3d82 /mysql-test/r/xml.result | |
parent | e4d2fd35a7333fb6a9c92c6439b4c4123983ccde (diff) | |
parent | a6294cd5cbd02c48b28fe8b380f8c259f14f9d8c (diff) | |
download | mariadb-git-65116d34089d977929f36542522e79d05786094d.tar.gz |
Manual-merge from mysql-5.1-bugteam.
Diffstat (limited to 'mysql-test/r/xml.result')
-rw-r--r-- | mysql-test/r/xml.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/xml.result b/mysql-test/r/xml.result index e6811789679..92f84381415 100644 --- a/mysql-test/r/xml.result +++ b/mysql-test/r/xml.result @@ -1106,4 +1106,11 @@ REPLACE(EXTRACTVALUE('1', '/a'),'ds','') SELECT AVG(DISTINCT EXTRACTVALUE((''),('$@k'))); AVG(DISTINCT EXTRACTVALUE((''),('$@k'))) NULL +# +# Bug#57279 updatexml dies with: Assertion failed: str_arg[length] == 0 +# +SELECT UPDATEXML(NULL, (LPAD(0.1111E-15, '2011', 1)), 1); +ERROR 22007: Illegal double '111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111' value found during parsing +SELECT EXTRACTVALUE('', LPAD(0.1111E-15, '2011', 1)); +ERROR 22007: Illegal double '111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111' value found during parsing End of 5.1 tests |