diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-11-06 22:25:39 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-12-12 20:27:23 +0100 |
commit | 75925f8fc1f395f23965afa0395356c87aeb9139 (patch) | |
tree | 81586feebeabff933fe760c49ccf52c60e2268f2 /sql/item_geofunc.h | |
parent | 75fb3213d3f53dabbcf5399d0ffdf4d9ec79794f (diff) | |
download | mariadb-git-75925f8fc1f395f23965afa0395356c87aeb9139.tar.gz |
bugfix: Item_func_spatial_collection::print()
Diffstat (limited to 'sql/item_geofunc.h')
-rw-r--r-- | sql/item_geofunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_geofunc.h b/sql/item_geofunc.h index f96e570915e..1584090c29e 100644 --- a/sql/item_geofunc.h +++ b/sql/item_geofunc.h @@ -291,7 +291,7 @@ public: } } - const char *func_name() const { return "st_multipoint"; } + const char *func_name() const { return "geometrycollection"; } Item *get_copy(THD *thd, MEM_ROOT *mem_root) { return get_item_copy<Item_func_spatial_collection>(thd, mem_root, this); } }; |