| 1177 | |
| 1178 | |
| 1179 | bool Gis_point::get_data_as_json(String *txt, uint max_dec_digits, |
| 1180 | const char **end) const |
| 1181 | { |
| 1182 | if (txt->reserve(MAX_DIGITS_IN_DOUBLE * 2 + 4)) |
| 1183 | return 1; |
| 1184 | append_json_point(txt, max_dec_digits, m_data); |
| 1185 | *end= m_data+ POINT_DATA_SIZE; |
| 1186 | return 0; |
| 1187 | } |
| 1188 | |
| 1189 | |
| 1190 | bool Gis_point::get_mbr(MBR *mbr, const char **end) const |
nothing calls this directly
no test coverage detected