summaryrefslogtreecommitdiff
path: root/docs/db-api.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-02 20:31:12 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-02 20:31:12 +0000
commitb5df9c308f169cdeaa9bf4490ed925cf95d0243a (patch)
treea719ca906517f6d9639f1ad356bfbfc3a7e31fe3 /docs/db-api.txt
parent91a283583cf17b9241bd1b9882783a8aedba4d8e (diff)
Improved docs/db-api.txt to specify that case-sensitive ordering isn't supported
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/db-api.txt')
-rw-r--r--docs/db-api.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/db-api.txt b/docs/db-api.txt
index 1a4f488d50..01aacf49b1 100644
--- a/docs/db-api.txt
+++ b/docs/db-api.txt
@@ -239,6 +239,10 @@ so::
polls.get_list(order_by=['?'])
+There's no way to specify whether ordering should be case sensitive. With
+respect to case-sensitivity, Django will order results however your database
+backend normally orders them.
+
Relationships (joins)
=====================