diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2015-12-01 08:08:41 +0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-02 17:25:33 -0500 |
| commit | 0825f77f7626d2ff175c17d06d726bf2f704f12c (patch) | |
| tree | eb793e2935cdaf9dcd05861f8111ec84340d4c6c /docs/ref | |
| parent | d3b488f5bd17b4cf662613e0d3d62f9675ff3cdc (diff) | |
Fixed #25836 -- Added support for MakeLine aggregate 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 | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/docs/ref/contrib/gis/db-api.txt b/docs/ref/contrib/gis/db-api.txt index f3c61574ef..45bc18992b 100644 --- a/docs/ref/contrib/gis/db-api.txt +++ b/docs/ref/contrib/gis/db-api.txt @@ -348,7 +348,7 @@ Aggregate PostGIS Oracle SpatiaLite :class:`Collect` X X :class:`Extent` X X X :class:`Extent3D` X -:class:`MakeLine` X +:class:`MakeLine` X X :class:`Union` X X X ======================= ======= ====== ========== diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt index 28d50e4398..c3aae137c1 100644 --- a/docs/ref/contrib/gis/geoquerysets.txt +++ b/docs/ref/contrib/gis/geoquerysets.txt @@ -1297,11 +1297,15 @@ Example:: .. class:: MakeLine(geo_field) -*Availability*: PostGIS +*Availability*: PostGIS, SpatiaLite Returns a ``LineString`` constructed from the point field geometries in the ``QuerySet``. Currently, ordering the queryset has no effect. +.. versionchanged:: 1.10 + + SpatiaLite support was added. + Example:: >>> print(City.objects.filter(name__in=('Houston', 'Dallas') |
