From 859e678b3d4df084c771e6344dd1a2b2ae716afe Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Tue, 20 Aug 2013 12:28:59 -0400 Subject: [PATCH] Oracle also treats NULLs as largests values when ordering. --- django/db/backends/oracle/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/db/backends/oracle/base.py b/django/db/backends/oracle/base.py index 2786d05f79..8b556b8449 100644 --- a/django/db/backends/oracle/base.py +++ b/django/db/backends/oracle/base.py @@ -90,6 +90,7 @@ class DatabaseFeatures(BaseDatabaseFeatures): has_bulk_insert = True supports_tablespaces = True supports_sequence_reset = False + nulls_order_largest = True class DatabaseOperations(BaseDatabaseOperations):