Changes between Initial Version and Version 3 of Ticket #21160
- Timestamp:
- Sep 27, 2013, 3:44:44 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21160
- Property Severity Release blocker → Normal
-
Ticket #21160 – Description
initial v3 4 4 https://github.com/django/django/blob/master/django/db/backends/sqlite3/base.py#L140 5 5 6 This ops feature is only used in _batched_insert. I've written a patch that makes use of it in the in_bulk method as well. You can check it here 7 [link pending] 6 This ops feature is only used in _batched_insert. I've written a patch that makes use of it in the in_bulk method as well. You can check it here: https://github.com/django/django/pull/1679 8 7 9 8 I've also written two tests that test passing in a large number of ids and also the efficiency in this case. The efficiency test runs only on databases that don't support 1000 variables in a query.