From 74efab3e795680d05eb23f7195f538f48c14c649 Mon Sep 17 00:00:00 2001 From: Darren Evenson Date: Tue, 6 Aug 2013 10:11:19 -0500 Subject: [PATCH] HHH-8055 error in docs - associations and joins - meaning is opposite of intended meaning --- .../src/main/docbook/manual/en-US/content/query_hql.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/src/main/docbook/manual/en-US/content/query_hql.xml b/documentation/src/main/docbook/manual/en-US/content/query_hql.xml index ae6f487b14..53ab04fece 100644 --- a/documentation/src/main/docbook/manual/en-US/content/query_hql.xml +++ b/documentation/src/main/docbook/manual/en-US/content/query_hql.xml @@ -78,7 +78,7 @@ -
+
Associations and joins @@ -167,7 +167,7 @@ The fetch construct cannot be used in queries called using iterate() (though scroll() can be used). - Fetch should be used together with setMaxResults() or + Fetch should not be used together with setMaxResults() or setFirstResult(), as these operations are based on the result rows which usually contain duplicates for eager collection fetching, hence, the number of rows is not what you would expect.