From 0d107a85b3dd6969e66cc9cb4bd29e1cc92a7d18 Mon Sep 17 00:00:00 2001 From: Alexey Botchkov Date: Tue, 24 Jan 2017 02:29:04 +0400 Subject: MDEV-11042 Implement GeoJSON functions. ST_AsGeoJSON and ST_GeomFromGeoJSON functions implemented. --- sql/item_jsonfunc.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sql/item_jsonfunc.cc') diff --git a/sql/item_jsonfunc.cc b/sql/item_jsonfunc.cc index a500170ead0..b0576fbdaba 100644 --- a/sql/item_jsonfunc.cc +++ b/sql/item_jsonfunc.cc @@ -117,9 +117,9 @@ static int st_append_escaped(String *s, const String *a) report_json_error_ex(js, je, func_name(), n_param, \ Sql_condition::WARN_LEVEL_WARN) -static void report_json_error_ex(String *js, json_engine_t *je, - const char *fname, int n_param, - Sql_condition::enum_warning_level lv) +void report_json_error_ex(String *js, json_engine_t *je, + const char *fname, int n_param, + Sql_condition::enum_warning_level lv) { THD *thd= current_thd; int position= (const char *) je->s.c_str - js->ptr(); -- cgit v1.2.1