mirror of
https://github.com/django/django.git
synced 2025-09-26 20:19:16 +00:00
Refs #28670 -- Fixed DatabaseFeatures.supports_slicing_ordering_in_compound on Oracle.
This commit is contained in:
parent
c5568340a5
commit
f0082b9a77
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue