I have a fixture defined like so:
one:
long_name: Long Name
short_name: LN
bounds: !ruby/object:Polygon
rings:
- !ruby/object:LinearRing
points:
- !ruby/object:Point {x: 0, y: 0}
- !ruby/object:Point {x: 20, y: 0}
- !ruby/object:Point {x: 20, y: 20}
- !ruby/object:Point {x: 0, y: 20}
- !ruby/object:Point {x: 0, y: 0}
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:
one:
long_name: Long Name
short_name: LN
bounds: !ruby/object:Polygon
srid: -1
rings:
- !ruby/object:LinearRing
points:
- !ruby/object:Point {x: 0, y: 0}
- !ruby/object:Point {x: 20, y: 0}
- !ruby/object:Point {x: 20, y: 20}
- !ruby/object:Point {x: 0, y: 20}
- !ruby/object:Point {x: 0, y: 0}
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.
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
GeomFromWKBfunction call. Looking through the source, atlib/spatial_adapter/mysql2.rb:20it looks like ifvalue.sridis nil, then it would cause the erroneous SQL statement to be returned. I'm not sure how or why thesridisn't being set toDEFAULT_SRIDwhen 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 propagatingsridchanges 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.