I've got a column called 'coordinates' of type 'point'.
This query:
update `my-db`.`community`
set `coordinates`= POINT( 31.9931217, 35.2823115 )
where 'id' = 1;
Returns the following error:
cannot get geometry object from data you send to the GEOMETRY field
What is the proper formatting here?