diff options
author | Alexander Barkov <bar@mariadb.com> | 2019-07-03 20:08:10 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.com> | 2019-07-04 07:48:46 +0400 |
commit | 9c9e0ac73d50782264d2cf52010465b06b5d65e2 (patch) | |
tree | 049a0a5f968430f8f70b5181a0939399eccb1d36 /mysql-test/main/sp_gis.result | |
parent | 695230c067208014dc164cde9c0657487d399d9b (diff) | |
download | mariadb-git-9c9e0ac73d50782264d2cf52010465b06b5d65e2.tar.gz |
MDEV-19944 Remove GIS data types from keyword list in lex.h
Diffstat (limited to 'mysql-test/main/sp_gis.result')
-rw-r--r-- | mysql-test/main/sp_gis.result | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/mysql-test/main/sp_gis.result b/mysql-test/main/sp_gis.result index 7a76507754f..35c7e52e833 100644 --- a/mysql-test/main/sp_gis.result +++ b/mysql-test/main/sp_gis.result @@ -28,3 +28,75 @@ test.a() test.x() test.y() drop function a; drop function x; drop function y; +# +# Start of 10.5 tests +# +# +# MDEV-19944 Remove GIS data types from keyword list in lex.h +# +CREATE FUNCTION point() RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'point' has the same name as a native function +SELECT point(); +point() +NULL +DROP FUNCTION point; +CREATE FUNCTION point(x INT) RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'point' has the same name as a native function +SELECT point(1); +point(1) +NULL +DROP FUNCTION point; +CREATE FUNCTION point(x INT, y INT) RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'point' has the same name as a native function +SELECT AsText(point(1,1)); +AsText(point(1,1)) +POINT(1 1) +DROP FUNCTION point; +CREATE FUNCTION linestring() RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'linestring' has the same name as a native function +SELECT linestring(); +linestring() +NULL +DROP FUNCTION linestring; +CREATE FUNCTION polygon() RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'polygon' has the same name as a native function +SELECT polygon(); +polygon() +NULL +DROP FUNCTION polygon; +CREATE FUNCTION multipoint() RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'multipoint' has the same name as a native function +SELECT multipoint(); +multipoint() +NULL +DROP FUNCTION multipoint; +CREATE FUNCTION multilinestring() RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'multilinestring' has the same name as a native function +SELECT multilinestring(); +multilinestring() +NULL +DROP FUNCTION multilinestring; +CREATE FUNCTION multipolygon() RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'multipolygon' has the same name as a native function +SELECT multipolygon(); +multipolygon() +NULL +DROP FUNCTION multipolygon; +CREATE FUNCTION geometrycollection() RETURNS POINT RETURN NULL; +Warnings: +Note 1585 This function 'geometrycollection' has the same name as a native function +SELECT geometrycollection(); +geometrycollection() +NULL +DROP FUNCTION geometrycollection; +# +# End of 10.5 tests +# |