You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`boolean dwithin(Geometry, Geometry, double)` | Returns true if the geometries are within the specified distance of one another | {yes} | {yes} | {no} | {no} | {yes} | {yes}
122
-
|`Geometry transform(Geometry, int)` | Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter | {yes} | {yes} | {no} | {no} | {no} | {no}
123
-
|Spatial aggregate Functions | | | | | | |
124
-
|`Geometry extent(Geometry)` | Returns a bounding box that bounds the set of returned geometries | {yes} | {yes} | {no} | {no} | {no} | {no}
|`boolean dwithin(Geometry, Geometry, double)` | Returns true if the geometries are within the specified distance of one another | {yes} | {yes} | {no} | {no} | {yes} | {yes} | {yes}
122
+
|`Geometry transform(Geometry, int)` | Returns a new geometry with its coordinates transformed to the SRID referenced by the integer parameter | {yes} | {yes} | {no} | {no} | {no} | {no} | {yes}
123
+
|Spatial aggregate Functions | | | | | | | |
124
+
|`Geometry extent(Geometry)` | Returns a bounding box that bounds the set of returned geometries | {yes} | {yes} | {no} | {no} | {no} | {no} | {yes}
125
125
|================================
126
126
^(1)^ Argument Geometries need to have the same dimensionality.
127
127
@@ -191,6 +191,14 @@ The dialect `SqlServer2008Dialect` supports the `GEOMETRY` type in SQL Server 20
191
191
The `GEOGRAPHY` type is not currently supported.
192
192
====
193
193
194
+
CockroachDB::
195
+
The dialect `CockroachDB202SpatialDialect` support the `GEOMETRY` type in CockroachDB v20.2 and later.
196
+
197
+
[NOTE]
198
+
====
199
+
The `GEOGRAPHY` type is not currently supported.
200
+
====
201
+
194
202
GeoDB (H2)::
195
203
The `GeoDBDialect` supports the GeoDB a spatial extension of the H2 in-memory database.
Copy file name to clipboardExpand all lines: gradle/databases.gradle
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -189,5 +189,14 @@ ext {
189
189
// Disable prepared statement caching due to https://www.postgresql.org/message-id/CAEcMXhmmRd4-%2BNQbnjDT26XNdUoXdmntV9zdr8%3DTu8PL9aVCYg%40mail.gmail.com
// CockroachDB uses the same pgwire protocol as PostgreSQL, so the driver is the same.
195
+
'jdbc.driver': 'org.postgresql.Driver',
196
+
'jdbc.user' : 'root',
197
+
'jdbc.pass' : '',
198
+
// Disable prepared statement caching due to https://www.postgresql.org/message-id/CAEcMXhmmRd4-%2BNQbnjDT26XNdUoXdmntV9zdr8%3DTu8PL9aVCYg%40mail.gmail.com
0 commit comments