diff options
| author | Kevan Swanberg <kevswanberg@gmail.com> | 2016-07-21 16:54:07 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-08-30 20:45:47 -0400 |
| commit | 35504f74a8c3b45d308969a77488d11443ce4348 (patch) | |
| tree | 5aeccff79a3bb4f27c943b003cf0af4900d76abe /docs/ref | |
| parent | 0d7929266ec9d8f6bcf9e41a40b281259cba6a79 (diff) | |
Fixed #26685 -- Added dwithin lookup support on SpatiaLite.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/gis/db-api.txt | 2 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/geoquerysets.txt | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/contrib/gis/db-api.txt b/docs/ref/contrib/gis/db-api.txt index 6ac4b81c58..55387cd721 100644 --- a/docs/ref/contrib/gis/db-api.txt +++ b/docs/ref/contrib/gis/db-api.txt @@ -343,7 +343,7 @@ Lookup Type PostGIS Oracle MySQL [#]_ SpatiaLite :lookup:`distance_gte` X X X N :lookup:`distance_lt` X X X N :lookup:`distance_lte` X X X N -:lookup:`dwithin` X X B +:lookup:`dwithin` X X X B :lookup:`equals` X X X X C :lookup:`exact` X X X X B :lookup:`intersects` X X X X B diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt index 7d2bcbdd6e..6f2ee01e36 100644 --- a/docs/ref/contrib/gis/geoquerysets.txt +++ b/docs/ref/contrib/gis/geoquerysets.txt @@ -708,11 +708,12 @@ Backend SQL Equivalent ========== ====================================== PostGIS ``ST_DWithin(poly, geom, 5)`` Oracle ``SDO_WITHIN_DISTANCE(poly, geom, 5)`` +SpatiaLite ``PtDistWithin(poly, geom, 5)`` ========== ====================================== -.. note:: +.. versionchanged:: 1.11 - This lookup is not available on SpatiaLite. + SpatiaLite support was added. .. _geoqueryset-methods: |
