summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian King <brian@liip.ch>2015-06-05 12:40:51 +0100
committerTim Graham <timograham@gmail.com>2015-06-15 17:31:50 -0400
commitc58755d8757d6d6ad1ab2c52a631aff1b9bae2da (patch)
tree9e437729714de6488506afa87701c11527c5b3cd /docs
parent062ce508b0edcb3a2e801d7959e08207bd8d2a1e (diff)
[1.8.x] Fixed #24912 -- Fixed prefetch_related failure for UUIDField primary keys
This resolves a problem on databases besides PostgreSQL when using prefetch_related with a source model that uses a UUID primary key. Backport of bfb5b7150ff52571a7a3cf10e0dd0d1dbd45c4b5 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.3.txt b/docs/releases/1.8.3.txt
index d7e063b397..39e08f904c 100644
--- a/docs/releases/1.8.3.txt
+++ b/docs/releases/1.8.3.txt
@@ -66,3 +66,6 @@ Bugfixes
* Provided better backwards compatibility for the ``verbosity`` argument in
``optparse`` management commands by casting it to an integer
(:ticket:`24769`).
+
+* Fixed ``prefetch_related()`` on databases other than PostgreSQL for models
+ using UUID primary keys (:ticket:`24912`).