From c448e614c60cc97c6194c62052363f4f501e0953 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Thu, 12 Nov 2020 10:06:04 +0100 Subject: [PATCH] Fixed #32187 -- Removed unnecessary select_related in queries doc. --- docs/topics/db/queries.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt index 637975bb2e..d29882e342 100644 --- a/docs/topics/db/queries.txt +++ b/docs/topics/db/queries.txt @@ -1283,7 +1283,7 @@ table. Example:: >>> b = Blog.objects.get(pk=1) # Update all the headlines belonging to this Blog. - >>> Entry.objects.select_related().filter(blog=b).update(headline='Everything is the same') + >>> Entry.objects.filter(blog=b).update(headline='Everything is the same') Be aware that the ``update()`` method is converted directly to an SQL statement. It is a bulk operation for direct updates. It doesn't run any