diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-04-22 14:45:55 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-04-22 14:45:55 +0300 |
commit | 455cf6196c8c73f5a50004ac7f31a9be8ac14bbe (patch) | |
tree | 2d9d696bba2590c63278fee0047a046f58b51a31 /mysql-test/main/gis.result | |
parent | 42af2b1d8b8a8508c5aac5c2e0bcf4554c5200ce (diff) | |
parent | e52a36d37be2fa8a2da8a987cb38cb0bb65233f4 (diff) | |
download | mariadb-git-455cf6196c8c73f5a50004ac7f31a9be8ac14bbe.tar.gz |
Merge 10.2 into 10.3
Diffstat (limited to 'mysql-test/main/gis.result')
-rw-r--r-- | mysql-test/main/gis.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/main/gis.result b/mysql-test/main/gis.result index cdae4b92f79..5a01a402c7d 100644 --- a/mysql-test/main/gis.result +++ b/mysql-test/main/gis.result @@ -2265,6 +2265,13 @@ st_astext(p) POINT(0 0) drop table t1; # +# MDEV-21056 Memory leak after query with DEFAULT on a geometry field +# +CREATE TABLE t1 (f POINT DEFAULT ST_GEOMFROMTEXT('Point(0 0)')); +SELECT ST_GEOMFROMTEXT('Point(1 1)') IN ( DEFAULT( `f` ), ST_GEOMFROMTEXT('Point(2 2)') ) AS x FROM t1; +x +DROP TABLE t1; +# # End of 10.2 tests # # |