You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
But trying to use it in a test suite results in the following error:
Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '), 400743110)' at line 1: INSERT INTO `locations` (`long_name`, `short_name`, `bounds`, `id`) VALUES ('Positive Location', 'PL', GeomFromWKB(0x010300000001000000050000000000000000000000000000000000000000000000000034400000000000000000000000000000344000000000000034400000000000000000000000000000344000000000000000000000000000000000,), 400743110)
The key part of the problem is:
GeomFromWKB(0x01030000[...]0000,),
Where there is an extra comma inside the GeomFromWKB function call. Looking through the source, at lib/spatial_adapter/mysql2.rb:20 it looks like if value.srid is nil, then it would cause the erroneous SQL statement to be returned. I'm not sure how or why the srid isn't being set to DEFAULT_SRID when the object is being created, but if I manually set it in the YAML like so:
Then it works fine. Also, it doesn't need to be set in the child objects, since the GeoRuby srid= method takes care of propagating srid changes down through the tree.
This isn't the end of the world because of the simple workaround, but it does seem to go against the expected behavior.
The text was updated successfully, but these errors were encountered:
Thanks, I'm pretty sure how to fix it, but I'm trying to get the tests updated first, and having trouble with the dependencies, not having worked on this for a while.
Yup, it seems like the srid isn't being set for the objects, event though it should be defaulting to DEFAULT_SRID. I don't know why it would be set to nil, it might be something within the way fixtures create instances.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a fixture defined like so:
But trying to use it in a test suite results in the following error:
The key part of the problem is:
Where there is an extra comma inside the
GeomFromWKB
function call. Looking through the source, atlib/spatial_adapter/mysql2.rb:20
it looks like ifvalue.srid
is nil, then it would cause the erroneous SQL statement to be returned. I'm not sure how or why thesrid
isn't being set toDEFAULT_SRID
when the object is being created, but if I manually set it in the YAML like so:Then it works fine. Also, it doesn't need to be set in the child objects, since the GeoRuby
srid=
method takes care of propagatingsrid
changes down through the tree.This isn't the end of the world because of the simple workaround, but it does seem to go against the expected behavior.
The text was updated successfully, but these errors were encountered: