HHH-15245 fix test regression

This commit is contained in:
Karel Maesen 2022-05-03 20:57:12 +02:00 committed by Christian Beikov
parent 64c39691ff
commit 93f1c0401d
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class CockroachDBTestSupport extends TestSupport {
return new GeomCodec() {
@Override
public Geometry<?> toGeometry(Object in) {
return PGGeometryJdbcType.INSTANCE_WKB_2.toGeometry( in );
return (Geometry<?>)( in );
}
};
}