diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-12-10 05:19:27 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-12-10 05:19:27 +0000 |
| commit | a1cbeb9afbbf0f16e1ffa1891575fbc2c3edae74 (patch) | |
| tree | c5741e275b870b9d5decd0f5ab716497b9305a2c /django/db/backends/__init__.py | |
| parent | 7030ab9a72ea590b359c22644e45edaf05dd8b5c (diff) | |
If an SQL query doesn't specify any ordering, avoid the implicit sort
that happens with MySQL when a "GROUP BY" clause is included. This is a
backend-specific operation, so any other databases requiring similar
encouragement can have a function added to their own backend code.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9637 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/__init__.py')
| -rw-r--r-- | django/db/backends/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index 353eb39488..736667d2ff 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -143,6 +143,14 @@ class BaseDatabaseOperations(object): """ return '%s' + def force_no_ordering(self): + """ + Returns a list used in the "ORDER BY" clause to force no ordering at + all. Returning an empty list means that nothing will be included in the + ordering. + """ + return [] + def fulltext_search_sql(self, field_name): """ Returns the SQL WHERE clause to use in order to perform a full-text |
