From f0082b9a77b76e5fe10a49474d93c3f80a30b928 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Mon, 10 Dec 2018 12:56:09 +0000 Subject: [PATCH] Refs #28670 -- Fixed DatabaseFeatures.supports_slicing_ordering_in_compound on Oracle. --- django/db/backends/oracle/features.py | 4 ++++ 1 file changed, 4 insertions(+) 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