Skip to content

Commit

Permalink
Refs #28670 -- Fixed DatabaseFeatures.supports_slicing_ordering_in_co…
Browse files Browse the repository at this point in the history
…mpound on Oracle.
  • Loading branch information
felixxm committed Dec 10, 2018
1 parent c556834 commit f0082b9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions django/db/backends/oracle/features.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,7 @@ def has_fetch_offset_support(self):
@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

0 comments on commit f0082b9

Please sign in to comment.