diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2014-07-01 00:30:24 +0500 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2014-07-01 00:30:24 +0500 |
commit | 80a02037df1e65168a150b4dcd21822bfc14b71a (patch) | |
tree | 0b085ce90a49f95ffc83e9ba6d52b8423497164b /sql/item_geofunc.h | |
parent | 439f75f849b9ab63fc65e2bd37af5c3429ffc1da (diff) | |
download | mariadb-git-80a02037df1e65168a150b4dcd21822bfc14b71a.tar.gz |
MDEV-6073 Merge gis test cases form 5.6.
Tests were merged.
As the implementation is different, the 'internal debugging' part
was not merged, only a stub for it created.
Diffstat (limited to 'sql/item_geofunc.h')
-rw-r--r-- | sql/item_geofunc.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/item_geofunc.h b/sql/item_geofunc.h index 2d715dc8765..6d52661e5c9 100644 --- a/sql/item_geofunc.h +++ b/sql/item_geofunc.h @@ -496,6 +496,18 @@ public: const char *func_name() const { return "st_distance"; } }; + +#ifndef DBUG_OFF +class Item_func_gis_debug: public Item_int_func +{ + public: + Item_func_gis_debug(Item *a) :Item_int_func(a) { null_value= false; } + const char *func_name() const { return "st_gis_debug"; } + longlong val_int(); +}; +#endif + + #define GEOM_NEW(thd, obj_constructor) new (thd->mem_root) obj_constructor #else /*HAVE_SPATIAL*/ |