diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-04-22 22:51:43 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-04-22 22:51:43 +0400 |
commit | fac2a7a85dab10ef6cc7628f635fe5a3736514a6 (patch) | |
tree | 2519271f97ae9838fb0ef196aabe2437726e2219 /mysql-test/r/gis.result | |
parent | 97fb1f26797828427ad850b0420aaafc74205e71 (diff) | |
download | mariadb-git-fac2a7a85dab10ef6cc7628f635fe5a3736514a6.tar.gz |
MDEV-12495 Conditional jump depends on uninitialised value for: SELECT NULL UNION geom_expression
Diffstat (limited to 'mysql-test/r/gis.result')
-rw-r--r-- | mysql-test/r/gis.result | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/gis.result b/mysql-test/r/gis.result index 174088bf944..2bd492008bc 100644 --- a/mysql-test/r/gis.result +++ b/mysql-test/r/gis.result @@ -1630,3 +1630,16 @@ SELECT ASTEXT(p) FROM v1; ASTEXT(p) POINT(1 1) DROP VIEW v1; +# +# Start of 10.0 tests +# +# +# MDEV-12495 Conditional jump depends on uninitialised value for: SELECT NULL UNION geom_expression +# +SELECT AsText(g) FROM (SELECT NULL AS g UNION SELECT Point(1,1)) AS t1; +AsText(g) +NULL +POINT(1 1) +# +# End 10.0 tests +# |