diff --git a/django/db/backends/oracle/features.py b/django/db/backends/oracle/features.py index 7c72831c25..ec301d9d37 100644 --- a/django/db/backends/oracle/features.py +++ b/django/db/backends/oracle/features.py @@ -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