From e2d02c1fc99d8d85ec2a13a745cb786a15a5c6b2 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 27 Dec 2016 09:58:42 -0500 Subject: Used a nontemporal example in QuerySet.bulk_create() in docs. --- docs/topics/db/optimization.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/topics') diff --git a/docs/topics/db/optimization.txt b/docs/topics/db/optimization.txt index 446ec87256..66326f2fb1 100644 --- a/docs/topics/db/optimization.txt +++ b/docs/topics/db/optimization.txt @@ -339,14 +339,14 @@ When creating objects, where possible, use the number of SQL queries. For example:: Entry.objects.bulk_create([ - Entry(headline="Python 3.0 Released"), - Entry(headline="Python 3.1 Planned") + Entry(headline='This is a test'), + Entry(headline='This is only a test'), ]) ...is preferable to:: - Entry.objects.create(headline="Python 3.0 Released") - Entry.objects.create(headline="Python 3.1 Planned") + Entry.objects.create(headline='This is a test') + Entry.objects.create(headline='This is only a test') Note that there are a number of :meth:`caveats to this method `, so make sure it's appropriate -- cgit v1.3