1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +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

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