From 327041874ecdb398436adc8a5d32d49c6866dd8c Mon Sep 17 00:00:00 2001 From: Dennis Stolmeijer Date: Mon, 1 Apr 2019 17:57:47 +0200 Subject: [PATCH] Always pass the SRID part of a geometry property with the GeomFromText function --- adminer/drivers/mysql.inc.php | 2 +- changes.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/adminer/drivers/mysql.inc.php b/adminer/drivers/mysql.inc.php index 170d57b7..4dc0cc19 100644 --- a/adminer/drivers/mysql.inc.php +++ b/adminer/drivers/mysql.inc.php @@ -1079,7 +1079,7 @@ if (!defined("DRIVER")) { $return = "CONV($return, 2, 10) + 0"; } if (preg_match("~geometry|point|linestring|polygon~", $field["type"])) { - $return = (min_version(8) ? "ST_" : "") . "GeomFromText($return)"; + $return = (min_version(8) ? "ST_" : "") . "GeomFromText($return, SRID($field[field]))"; } return $return; } diff --git a/changes.txt b/changes.txt index d194c2f0..fc1f48cc 100644 --- a/changes.txt +++ b/changes.txt @@ -3,6 +3,7 @@ Do not attempt logging in without password (bug #676) Stretch footer over the whole table width (bug #624) Allow overwriting tables when copying them MySQL: Fix creating users and changing password in MySQL 8 (bug #663) +MySQL: Pass SRID to GeomFromText Adminer 4.7.1 (released 2019-01-24): Display the tables scrollbar (bug #647)