1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Renamed the allow_sliced_subqueries database feature to allow_sliced_subqueries_with_in.

After 0899d583bd this database feature is
false only on MySQL which doesn't support sliced subqueries only with
IN/ALL/ANY/SOME.
This commit is contained in:
Mariusz Felisiak
2018-02-07 08:27:47 +01:00
committed by GitHub
parent 47268242b0
commit 34b52f8572
4 changed files with 7 additions and 3 deletions

View File

@@ -234,6 +234,9 @@ Database backend API
feature are changed from :exc:`NotImplementedError` to
:exc:`django.db.NotSupportedError`.
* Renamed the ``allow_sliced_subqueries`` database feature flag to
``allow_sliced_subqueries_with_in``.
:mod:`django.contrib.gis`
-------------------------