diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index 018c0f0..613b1d3 100644
a
|
b
|
This has a number of caveats though:
|
1714 | 1714 | |
1715 | 1715 | The ``batch_size`` parameter controls how many objects are created in single |
1716 | 1716 | query. The default is to create all objects in one batch, except for SQLite |
1717 | | where the default is such that at maximum 999 variables per query is used. |
| 1717 | where the default is such that at most 999 variables per query are used. |
1718 | 1718 | |
1719 | 1719 | count |
1720 | 1720 | ~~~~~ |
… |
… |
Example::
|
2125 | 2125 | Blog.objects.get(name__iexact='beatles blog') |
2126 | 2126 | Blog.objects.get(name__iexact=None) |
2127 | 2127 | |
2128 | | SQL equivalent:: |
| 2128 | SQL equivalents:: |
2129 | 2129 | |
2130 | 2130 | SELECT ... WHERE name ILIKE 'beatles blog'; |
| 2131 | SELECT ... WHERE name IS NULL; |
2131 | 2132 | |
2132 | | Note this will match ``'Beatles Blog'``, ``'beatles blog'``, ``'BeAtLes |
2133 | | BLoG'``, etc. |
| 2133 | Note the first query will match ``'Beatles Blog'``, ``'beatles blog'``, |
| 2134 | ``'BeAtLes BLoG'``, etc. |
2134 | 2135 | |
2135 | 2136 | .. admonition:: SQLite users |
2136 | 2137 | |