diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2017-01-24 02:29:04 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2017-01-24 02:29:04 +0400 |
commit | 0d107a85b3dd6969e66cc9cb4bd29e1cc92a7d18 (patch) | |
tree | 4ea2e72a0886dae95c31ecdc9556b381c4e097d5 /sql/item_jsonfunc.cc | |
parent | 1f3ad6a4ba63074c51c84dff449c35a8314a7f36 (diff) | |
download | mariadb-git-0d107a85b3dd6969e66cc9cb4bd29e1cc92a7d18.tar.gz |
MDEV-11042 Implement GeoJSON functions.
ST_AsGeoJSON and ST_GeomFromGeoJSON functions implemented.
Diffstat (limited to 'sql/item_jsonfunc.cc')
-rw-r--r-- | sql/item_jsonfunc.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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(); |