diff options
| author | Simon Charette <charette.s@gmail.com> | 2013-08-20 12:28:59 -0400 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2013-08-20 12:28:59 -0400 |
| commit | 859e678b3d4df084c771e6344dd1a2b2ae716afe (patch) | |
| tree | 1b91ed58f8f6f34a7718e33f308ec0706e68c840 | |
| parent | 86f4459f9e3c035ec96578617605e93234bf2700 (diff) | |
Oracle also treats NULLs as largests values when ordering.
| -rw-r--r-- | django/db/backends/oracle/base.py | 1 |
1 files changed, 1 insertions, 0 deletions
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): |
