summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLena Startseva <lena.startseva@mariadb.com>2022-12-15 16:12:49 +0000
committerLena Startseva <lena.startseva@mariadb.com>2022-12-16 10:02:56 +0000
commit0ca3aaa75fe084daabacfed0924598621dffec15 (patch)
tree5e55d5523dafd7408a56bff1b7e37c75a6500a74
parent9f8fc983d5fe23698f8fd6f7457568cd689ed0e2 (diff)
downloadmariadb-git-0ca3aaa75fe084daabacfed0924598621dffec15.tar.gz
MDEV-27691: make working view-protocol
Excluded one case from view-protocol in gis.test
-rw-r--r--mysql-test/main/gis.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/main/gis.test b/mysql-test/main/gis.test
index 716fab9bfeb..72b4661ad24 100644
--- a/mysql-test/main/gis.test
+++ b/mysql-test/main/gis.test
@@ -3093,12 +3093,15 @@ SELECT IS_USED_LOCK(POINT(1,1));
--echo #
--echo # MDEV-26161 crash in Gis_point::calculate_haversine
--echo #
+#enable after fix MDEV-30229
+--disable_view_protocol
--error ER_CANT_CREATE_GEOMETRY_OBJECT
select st_distance_sphere(x'01030000000400000004000000000000', multipoint(point(124,204)), 10);
--error ER_CANT_CREATE_GEOMETRY_OBJECT
select st_distance_sphere(x'010300000004000000040000', multipoint(point(124,204)), 10);
--error ER_CANT_CREATE_GEOMETRY_OBJECT
select st_distance_sphere(x'010300000001000000040000', multipoint(point(124,204)), 10);
+--enable_view_protocol
--echo #
--echo # End of 10.3 tests