mirror of
https://github.com/django/django.git
synced 2025-08-06 11:58:26 +00:00
Fixed #33379 -- Added minimum database version checks.
Thanks Tim Graham for the review.
This commit is contained in:
parent
737542390a
commit
9ac3ef59f9
16 changed files with 166 additions and 41 deletions
|
@ -6,6 +6,7 @@ from django.utils.functional import cached_property
|
|||
|
||||
|
||||
class DatabaseFeatures(BaseDatabaseFeatures):
|
||||
minimum_database_version = (10,)
|
||||
allows_group_by_selected_pks = True
|
||||
can_return_columns_from_insert = True
|
||||
can_return_rows_from_bulk_insert = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue