Reverted "Refs #35803 -- Added support for __coveredby GIS lookup on MariaDB 11.7+."

This partly reverts commit 0b7edb9fcd.

MariaDB reverted GIS functions.
This commit is contained in:
Mariusz Felisiak 2025-02-12 23:16:34 +01:00 committed by Sarah Boyce
parent eb70aafdba
commit 54a902c6e8
4 changed files with 4 additions and 9 deletions

View file

@ -347,7 +347,7 @@ Lookup Type PostGIS Oracle MariaDB MySQL [#]_ S
:lookup:`contained` X X X X N
:lookup:`contains <gis-contains>` X X X X X B
:lookup:`contains_properly` X B
:lookup:`coveredby` X X X (≥ 11.7) X X B
:lookup:`coveredby` X X X X B
:lookup:`covers` X X X X B
:lookup:`crosses` X X X X C
:lookup:`disjoint` X X X X X B

View file

@ -183,7 +183,7 @@ PostGIS ``ST_ContainsProperly(poly, geom)``
-------------
*Availability*: `PostGIS <https://postgis.net/docs/ST_CoveredBy.html>`__,
Oracle, MariaDB 11.7+, MySQL, PGRaster (Bilateral), SpatiaLite
Oracle, MySQL, PGRaster (Bilateral), SpatiaLite
Tests if no point in the geometry field is outside the lookup geometry.
[#fncovers]_
@ -197,14 +197,13 @@ Backend SQL Equivalent
========== =============================
PostGIS ``ST_CoveredBy(poly, geom)``
Oracle ``SDO_COVEREDBY(poly, geom)``
MariaDB ``MBRCoveredBy(poly, geom)``
MySQL ``MBRCoveredBy(poly, geom)``
SpatiaLite ``CoveredBy(poly, geom)``
========== =============================
.. versionchanged:: 5.2
MySQL and MariaDB 11.7+ support was added.
MySQL support was added.
.. fieldlookup:: covers

View file

@ -199,8 +199,6 @@ Minor features
* :lookup:`coveredby` and :lookup:`covers` lookup are now supported on MySQL.
* :lookup:`coveredby` lookup is now supported on MariaDB 11.7+.
:mod:`django.contrib.syndication`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~