From 80a02037df1e65168a150b4dcd21822bfc14b71a Mon Sep 17 00:00:00 2001
From: Alexey Botchkov <holyfoot@askmonty.org>
Date: Tue, 1 Jul 2014 00:30:24 +0500
Subject: 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.

---
 sql/item_geofunc.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

(limited to 'sql/item_geofunc.h')

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*/
-- 
cgit v1.2.1