Refs #28670 -- Fixed DatabaseFeatures.supports_slicing_ordering_in_compound on Oracle.

This commit is contained in:
Mariusz Felisiak 2018-12-10 12:56:09 +00:00 committed by GitHub
parent c5568340a5
commit f0082b9a77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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