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:
@@ -64,3 +64,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
|||||||
@cached_property
|
@cached_property
|
||||||
def allow_sliced_subqueries_with_in(self):
|
def allow_sliced_subqueries_with_in(self):
|
||||||
return self.has_fetch_offset_support
|
return self.has_fetch_offset_support
|
||||||
|
|
||||||
|
@cached_property
|
||||||
|
def supports_slicing_ordering_in_compound(self):
|
||||||
|
return self.has_fetch_offset_support
|
||||||
|
|||||||
Reference in New Issue
Block a user