mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #30155 -- Dropped support for PostgreSQL 9.4 and PostGIS 2.1.
This commit is contained in:
parent
d47498c5df
commit
39ebdf5a3c
13 changed files with 21 additions and 78 deletions
|
@ -12,7 +12,7 @@ Program Description Required
|
|||
`PROJ.4`_ Cartographic Projections library Yes (PostgreSQL and SQLite only) 5.2, 5.1, 5.0, 4.x
|
||||
:doc:`GDAL <../gdal>` Geospatial Data Abstraction Library Yes 2.3, 2.2, 2.1, 2.0, 1.11
|
||||
:doc:`GeoIP <../geoip2>` IP-based geolocation library No 2
|
||||
`PostGIS`__ Spatial extensions for PostgreSQL Yes (PostgreSQL only) 2.5, 2.4, 2.3, 2.2, 2.1
|
||||
`PostGIS`__ Spatial extensions for PostgreSQL Yes (PostgreSQL only) 2.5, 2.4, 2.3, 2.2
|
||||
`SpatiaLite`__ Spatial extensions for SQLite Yes (SQLite only) 4.3
|
||||
======================== ==================================== ================================ ===================================
|
||||
|
||||
|
@ -30,7 +30,6 @@ totally fine with GeoDjango. Your mileage may vary.
|
|||
GDAL 2.1.0 2016-04
|
||||
GDAL 2.2.0 2017-05
|
||||
GDAL 2.3.0 2018-05
|
||||
PostGIS 2.1.0 2013-08-17
|
||||
PostGIS 2.2.0 2015-10-17
|
||||
PostGIS 2.3.0 2016-09-26
|
||||
PostGIS 2.4.0 2017-09-30
|
||||
|
|
|
@ -58,7 +58,7 @@ supported versions, and any notes for each of the supported database backends:
|
|||
================== ============================== ================== =========================================
|
||||
Database Library Requirements Supported Versions Notes
|
||||
================== ============================== ================== =========================================
|
||||
PostgreSQL GEOS, GDAL, PROJ.4, PostGIS 9.4+ Requires PostGIS.
|
||||
PostgreSQL GEOS, GDAL, PROJ.4, PostGIS 9.5+ Requires PostGIS.
|
||||
MySQL GEOS, GDAL 5.6+ Not OGC-compliant; :ref:`limited functionality <mysql-spatial-limitations>`.
|
||||
Oracle GEOS, GDAL 12.1+ XE not supported.
|
||||
SQLite GEOS, GDAL, PROJ.4, SpatiaLite 3.8.3+ Requires SpatiaLite 4.3+
|
||||
|
|
|
@ -90,7 +90,7 @@ General-purpose aggregation functions
|
|||
|
||||
.. class:: JSONBAgg(expressions, filter=None, **extra)
|
||||
|
||||
Returns the input values as a ``JSON`` array. Requires PostgreSQL ≥ 9.5.
|
||||
Returns the input values as a ``JSON`` array.
|
||||
|
||||
``StringAgg``
|
||||
-------------
|
||||
|
|
|
@ -61,7 +61,7 @@ available from the ``django.contrib.postgres.indexes`` module.
|
|||
|
||||
Provide an integer number of bytes to the gin_pending_list_limit_ parameter
|
||||
to tune the maximum size of the GIN pending list which is used when
|
||||
``fastupdate`` is enabled. This parameter requires PostgreSQL ≥ 9.5.
|
||||
``fastupdate`` is enabled.
|
||||
|
||||
.. _GIN Fast Update Technique: https://www.postgresql.org/docs/current/static/gin-implementation.html#GIN-FAST-UPDATE
|
||||
.. _gin_pending_list_limit: https://www.postgresql.org/docs/current/static/runtime-config-client.html#GUC-GIN-PENDING-LIST-LIMIT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue