3048
ER_STD_OUT_OF_RANGE_ERROR
Out of range error: %-.256s in function %s.
Functions arguments have an expected range, and this error is returned if this range is exceeded. Follow the documentation for the specific function indicated in the error message. For example, the function expects the longitude and latitude parameters to be between -180 and 180. In this case, the longitude argument is invalid:
By providing a longitude argument within the expected range, the error is no longer returned:
SELECT ST_GeoHash(181,30,15);
ERROR 3048 (HY000): Out of range error: Longitude should be [-180,180] in function ST_GeoHash.SELECT ST_GeoHash(180,30,15);
+-----------------------+
| ST_GeoHash(180,30,15) |
+-----------------------+
| xvrfxvrfxvrfxvr |
+-----------------------+This page is licensed: CC BY-SA / Gnu FDL