summaryrefslogtreecommitdiff
path: root/sql/spatial.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/spatial.h')
-rw-r--r--sql/spatial.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/spatial.h b/sql/spatial.h
index 926f66d5357..3858c0d2e51 100644
--- a/sql/spatial.h
+++ b/sql/spatial.h
@@ -265,9 +265,11 @@ public:
{
public:
LEX_STRING m_name;
+ LEX_STRING m_geojson_name;
int m_type_id;
create_geom_t m_create_func;
- Class_info(const char *name, int type_id, create_geom_t create_func);
+ Class_info(const char *name, const char *gejson_name,
+ int type_id, create_geom_t create_func);
};
virtual const Class_info *get_class_info() const=0;