HHH-17775 Standardize spelling of "round-trip" and "roundtrip" to "round
trip"
This commit is contained in:
parent
c1746f5f82
commit
12a93ce328
|
@ -182,7 +182,7 @@ include::{extrasdir}/sql-hibernate-entity-associations-query-many-to-one-join-ex
|
|||
|
||||
[NOTE]
|
||||
====
|
||||
As seen in the associated SQL query, Hibernate manages to construct the entity hierarchy without requiring any extra database roundtrip.
|
||||
As seen in the associated SQL query, Hibernate manages to construct the entity hierarchy without requiring any extra database round trips.
|
||||
====
|
||||
|
||||
Even when using the `addJoin()` method, the result list will only contain the root entity.
|
||||
|
|
|
@ -19,7 +19,7 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|||
* entity or collection.
|
||||
* <p>
|
||||
* When batch fetching is enabled, Hibernate is able to fetch multiple
|
||||
* instances of an entity or collection in a single round-trip to the
|
||||
* instances of an entity or collection in a single round trip to the
|
||||
* database. Instead of a SQL {@code select} with just one primary key
|
||||
* value in the {@code where} clause, the {@code where} clause contains
|
||||
* a list of primary keys inside a SQL {@code in} condition. The primary
|
||||
|
|
|
@ -11,7 +11,7 @@ import java.io.Serializable;
|
|||
import org.hibernate.id.IntegralDataTypeHolder;
|
||||
|
||||
/**
|
||||
* An optimizer that performs no optimization. A round-trip to
|
||||
* An optimizer that performs no optimization. A round trip to
|
||||
* the database is required for each new id.
|
||||
* <p>
|
||||
* This implementation is not the most efficient one.
|
||||
|
|
Loading…
Reference in New Issue