diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-12-10 12:56:09 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-10 12:56:09 +0000 |
| commit | f0082b9a77b76e5fe10a49474d93c3f80a30b928 (patch) | |
| tree | 5cfdba21c8455e307063b62e9b82d68d6316be0b | |
| parent | c5568340a525ab9c6898ed02c257394cc47285d7 (diff) | |
Refs #28670 -- Fixed DatabaseFeatures.supports_slicing_ordering_in_compound on Oracle.
| -rw-r--r-- | django/db/backends/oracle/features.py | 4 |
1 files changed, 4 insertions, 0 deletions
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 |
