I recently created a MySQL table with a column of type GEOMETRY.
When I back up the table with mysqldump, it outputs my geometry column as a quoted string, containing some escaped characters like \0, and also some characters that look like raw binary bytes in the upper-ASCII range.
When I try to restore the dump to another database it fails with an error:
"Cannot get GEOMETRY object from the data you send to the Geometry field".
I tried adding --hex-blob to my command line but this does not change the output or fix the problem.
I'm sure someone didn't create a data type in MySQL and forget to include a way to back it up. What am I missing?
Thanks.