From 3def8484223a03c8cdc9a28cb91b991c4617e070 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sun, 5 Feb 2012 22:51:42 +0100 Subject: [PATCH] Fix enumeration --- en/tutorials/pagination.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/en/tutorials/pagination.rst b/en/tutorials/pagination.rst index ef04a8d89..bb402fc87 100644 --- a/en/tutorials/pagination.rst +++ b/en/tutorials/pagination.rst @@ -13,9 +13,9 @@ vendors is not sufficient to get the correct results. By default the pagination extension does the following steps to compute the correct result: -1. Perform a Count query using `DISTINCT` keyword. -2. Perform a Limit Subquery with `DISTINCT` to find all ids of the entity in from on the current page. -3. Perform a WHERE IN query to get all results for the current page. +- Perform a Count query using `DISTINCT` keyword. +- Perform a Limit Subquery with `DISTINCT` to find all ids of the entity in from on the current page. +- Perform a WHERE IN query to get all results for the current page. This behavior is only necessary if you actually fetch join a to-many collection. You can disable this behavior by setting the