From 0825f77f7626d2ff175c17d06d726bf2f704f12c Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Tue, 1 Dec 2015 08:08:41 +0500 Subject: Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite. --- docs/ref/contrib/gis/db-api.txt | 2 +- docs/ref/contrib/gis/geoquerysets.txt | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'docs/ref') 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') -- cgit v1.3