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 +++++- docs/releases/1.10.txt | 3 +++ 3 files changed, 9 insertions(+), 2 deletions(-) (limited to 'docs') 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') diff --git a/docs/releases/1.10.txt b/docs/releases/1.10.txt index 33039eb73f..d1b6403f9f 100644 --- a/docs/releases/1.10.txt +++ b/docs/releases/1.10.txt @@ -79,6 +79,9 @@ Minor features :attr:`~django.contrib.gis.gdal.GDALBand.mean` and :attr:`~django.contrib.gis.gdal.GDALBand.std` attributes. +* Added support for the :class:`~django.contrib.gis.db.models.MakeLine` + aggregate on SpatiaLite. + :mod:`django.contrib.messages` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -- cgit v1.3