Strabon
changeset 1394:d77b3f6f67df
when creating new WKT values in PostGISBindingIteration.createGeoValue(), use the default datatype for WKT (specified in GeoConstants.default_WKT_datatype) and not strdf:WKT
author | Babis Nikolaou <charnik@di.uoa.gr> |
---|---|
date | Thu Sep 18 18:08:00 2014 +0300 (2014-09-18) |
parents | b84809388dac |
children | 85a06bbfd1b8 |
files | postgis/src/main/java/org/openrdf/sail/postgis/iteration/PostGISBindingIteration.java |
line diff
1.1 --- a/postgis/src/main/java/org/openrdf/sail/postgis/iteration/PostGISBindingIteration.java Thu Sep 18 17:50:48 2014 +0300 1.2 +++ b/postgis/src/main/java/org/openrdf/sail/postgis/iteration/PostGISBindingIteration.java Thu Sep 18 18:08:00 2014 +0300 1.3 @@ -38,7 +38,7 @@ 1.4 { 1.5 byte[] label = rs.getBytes(index + 1); 1.6 int srid = rs.getInt(index + 2); 1.7 - return vf.getRdbmsPolyhedron(id, GeoConstants.WKT, label, srid); 1.8 + return vf.getRdbmsPolyhedron(id, GeoConstants.default_WKT_datatype, label, srid); 1.9 1.10 } 1.11