From 8af615386fb0c6b949411ca4b6333efd89930734 Mon Sep 17 00:00:00 2001 From: Nathan Xu Date: Mon, 2 May 2022 12:28:32 -0400 Subject: [PATCH] HHH-15154 tweak verbiage in user guide on FetchMode.SUBSELECT --- .../src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc b/documentation/src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc index 214280e4ea..281b64b971 100644 --- a/documentation/src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc +++ b/documentation/src/main/asciidoc/userguide/chapters/fetching/Fetching.adoc @@ -525,7 +525,7 @@ and then navigate their `employees` collections. Hibernate is going to avoid the N + 1 query issue by generating a single SQL statement to initialize all `employees` collections for all `Department` entities that were previously fetched. -Instead of using passing all entity identifiers, Hibernate simply reruns the previous query that fetched the `Department` entities. +Instead of passing all entity identifiers, Hibernate simply reruns the previous query that fetched the `Department` entities. [[fetching-strategies-fetch-mode-subselect-example]] .`FetchMode.SUBSELECT` mapping example