File tree Expand file tree Collapse file tree 3 files changed +2
-1
lines changed Expand file tree Collapse file tree 3 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,6 @@ def execute_sql(
258
258
else :
259
259
return self ._make_result (obj , self .columns )
260
260
# result_type is MULTI
261
- cursor .batch_size (chunk_size )
262
261
result = self .cursor_iter (cursor , chunk_size , self .columns )
263
262
if not chunked_fetch :
264
263
# If using non-chunked reads, read data into memory.
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Django MongoDB Backend 5.1.x
11
11
the ``base_field `` uses a database converter.
12
12
- Fixed ``RecursionError `` when using ``Trunc `` database functions on non-MongoDB
13
13
databases.
14
+ - Improved ``QuerySet `` performance by removing low limit on server-side chunking.
14
15
15
16
5.1.0 beta 3
16
17
============
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ Bug fixes
25
25
databases.
26
26
- :meth: `QuerySet.explain() <django.db.models.query.QuerySet.explain> ` now
27
27
:ref: `returns a string that can be parsed as JSON <queryset-explain >`.
28
+ - Improved ``QuerySet `` performance by removing low limit on server-side chunking.
28
29
29
30
5.2.0 beta 1
30
31
============
You can’t perform that action at this time.
0 commit comments