I'm trying to do a mysql dump and heres the command I'm using:
mysqldump --hex-blob -u user -p database > dump.sql
I was told this should resolve the binary point
field how i still get this error when importing using mysql database < dump.sql
Cannot get geometry object from data you send to the GEOMETRY field
Not sure what to do at this point
I'm exporting from version 5.6.45
to 5.7.27
However, the import looks good and it contains all of the records and when i select the geometry data it looks like a binary data am i okay?
// 45K records found
select * from listingsaws where ST_IsEmpty(`location`) IS NULL;
// updated 0 records
UPDATE listingsaws SET `location` = NULL WHERE ST_IsEmpty(`location`) IS NULL;
// 45K records found
select * from listingsaws where asText(`location`) IS NULL;
//updated 0 records
UPDATE listingsaws SET `location` = NULL WHERE asText(`location`) IS NULL;