1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Refs #28670 -- Fixed DatabaseFeatures.supports_slicing_ordering_in_compound on Oracle.

This commit is contained in:
Mariusz Felisiak 2018-12-10 12:56:09 +00:00 committed by GitHub
parent c5568340a5
commit f0082b9a77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,3 +64,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
@cached_property
def allow_sliced_subqueries_with_in(self):
return self.has_fetch_offset_support
@cached_property
def supports_slicing_ordering_in_compound(self):
return self.has_fetch_offset_support