@@ -281,6 +281,8 @@ protected static final class TypesAdder74 extends TypesAdder {
281281 public void addGeometries (Connection conn ) throws SQLException {
282282 PGConnection pgconn = (PGConnection ) conn ;
283283 pgconn .addDataType ("geometry" , org .postgis .PGgeometry .class );
284+ pgconn .addDataType ("public.geometry" , org .postgis .PGgeometry .class );
285+ pgconn .addDataType ("\" public\" .\" geometry\" " , org .postgis .PGgeometry .class );
284286 }
285287
286288 public void addBoxen (Connection conn ) throws SQLException {
@@ -300,6 +302,8 @@ protected static class TypesAdder72 extends TypesAdder {
300302 public void addGeometries (Connection conn ) throws SQLException {
301303 org .postgresql .PGConnection pgconn = (org .postgresql .PGConnection ) conn ;
302304 pgconn .addDataType ("geometry" , org .postgis .PGgeometry .class );
305+ pgconn .addDataType ("public.geometry" , org .postgis .PGgeometry .class );
306+ pgconn .addDataType ("\" public\" .\" geometry\" " , org .postgis .PGgeometry .class );
303307 }
304308
305309 public void addBoxen (Connection conn ) throws SQLException {
@@ -319,6 +323,8 @@ protected static class TypesAdder80 extends TypesAdder {
319323 public void addGeometries (Connection conn ) throws SQLException {
320324 PGConnection pgconn = (PGConnection ) conn ;
321325 pgconn .addDataType ("geometry" , org .postgis .PGgeometry .class );
326+ pgconn .addDataType ("public.geometry" , org .postgis .PGgeometry .class );
327+ pgconn .addDataType ("\" public\" .\" geometry\" " , org .postgis .PGgeometry .class );
322328 }
323329
324330 public void addBoxen (Connection conn ) throws SQLException {
0 commit comments