1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-11042 Implement GeoJSON functions.

ST_AsGeoJSON and ST_GeomFromGeoJSON functions implemented.
This commit is contained in:
Alexey Botchkov
2017-01-24 02:29:04 +04:00
parent 1f3ad6a4ba
commit 0d107a85b3
10 changed files with 1147 additions and 8 deletions

View File

@ -1231,10 +1231,7 @@ int json_key_matches(json_engine_t *je, json_string_t *k)
return 0;
}
if (json_read_string_const_chr(k))
return 1;
return 0;
return json_read_string_const_chr(k);
}