Fixed #30860 -- Disabled unneeded NULLS FIRST/LAST workaround on SQLite 3.30+.

This commit is contained in:
Simon Charette 2019-10-09 04:47:49 -04:00 committed by Mariusz Felisiak
parent 94eae4e563
commit 8b10357854
1 changed files with 5 additions and 4 deletions

View File

@ -1146,6 +1146,7 @@ class OrderBy(BaseExpression):
def as_sqlite(self, compiler, connection):
template = None
if connection.Database.sqlite_version_info < (3, 30, 0):
if self.nulls_last:
template = '%(expression)s IS NULL, %(expression)s %(ordering)s'
elif self.nulls_first: