When using PostGIS geometry types and storing a record it serializes the Point type incorrectly.
$10::geometry gets as parameter "(50.501899 10.963963)" instead of "Point(50.501899 10.963963)". Insert fails with an error ERROR: invalid input syntax for type point.
Column definition:
Record usage:
val record = dsl.newRecord(Tables.TABLE_WITH_GPS)
record.gps = org.postgis.Point(50.501899, 10.963963)
record.insert() // This throws an error
When using PostGIS geometry types and storing a record it serializes the
Pointtype incorrectly.$10::geometrygets as parameter"(50.501899 10.963963)"instead of"Point(50.501899 10.963963)". Insert fails with an errorERROR: invalid input syntax for type point.Column definition:
Record usage: