summaryrefslogtreecommitdiff
path: root/mysql-test/r/gis.result
diff options
context:
space:
mode:
authorAlexey Botchkov <holyfoot@askmonty.org>2020-03-17 13:11:46 +0400
committerAlexey Botchkov <holyfoot@askmonty.org>2020-03-17 13:11:46 +0400
commite64a3df4dc248a8f61f8e2c91fa37ee9bfa5202c (patch)
tree7ad5e99aa97fb558fb0712967171b4227f0e439e /mysql-test/r/gis.result
parent89698cef72a5c220a2fcc346e3dd975ae219b7d9 (diff)
downloadmariadb-git-e64a3df4dc248a8f61f8e2c91fa37ee9bfa5202c.tar.gz
MDEV-21959 GIS error message doesn't show the wrong value, just the type.
Error message now shows the whole value.
Diffstat (limited to 'mysql-test/r/gis.result')
-rw-r--r--mysql-test/r/gis.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/gis.result b/mysql-test/r/gis.result
index 828fbd9d0e7..ecbdd5b586c 100644
--- a/mysql-test/r/gis.result
+++ b/mysql-test/r/gis.result
@@ -1689,7 +1689,7 @@ NULL
#
create table t1 (pt point);
insert into t1 values(Geomfromtext('POLYGON((1 1, 2 2, 2 1, 1 1))'));
-ERROR 22007: Incorrect POINT value: 'POLYGON' for column `test`.`t1`.`pt` at row 1
+ERROR 22007: Incorrect POINT value: 'POLYGON((1 1,2 2,2 1,1 1))' for column `test`.`t1`.`pt` at row 1
drop table t1;
SELECT st_astext(ST_Buffer(ST_PolygonFromText('POLYGON((3 5, 2 4, 2 5, 3 5))'), -100));
st_astext(ST_Buffer(ST_PolygonFromText('POLYGON((3 5, 2 4, 2 5, 3 5))'), -100))