File tree 2 files changed +8
-4
lines changed
hibernate-core/src/main/java/org/hibernate/query
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 17
17
import org .hibernate .query .spi .QueryOptions ;
18
18
import org .hibernate .query .spi .QueryParameterBindings ;
19
19
import org .hibernate .query .spi .ScrollableResultsImplementor ;
20
+ import org .hibernate .query .spi .SelectQueryPlan ;
20
21
import org .hibernate .query .sql .spi .NativeSelectQueryPlan ;
21
22
import org .hibernate .query .sql .spi .ParameterOccurrence ;
22
23
import org .hibernate .query .sqm .internal .SqmJdbcExecutionContextAdapter ;
31
32
import static java .util .Collections .emptyList ;
32
33
33
34
/**
35
+ * Standard implementation of {@link SelectQueryPlan} for
36
+ * {@link org.hibernate.query.NativeQuery}, that is, for
37
+ * queries written in SQL.
38
+ *
34
39
* @author Steve Ebersole
35
40
*/
36
41
public class NativeSelectQueryPlanImpl <R > implements NativeSelectQueryPlan <R > {
Original file line number Diff line number Diff line change 19
19
import org .hibernate .engine .spi .SubselectFetch ;
20
20
import org .hibernate .internal .EmptyScrollableResults ;
21
21
import org .hibernate .metamodel .mapping .MappingModelExpressible ;
22
- import org .hibernate .query .Query ;
23
22
import org .hibernate .query .QueryTypeMismatchException ;
24
23
import org .hibernate .query .TupleTransformer ;
25
24
import org .hibernate .query .spi .DomainQueryExecutionContext ;
66
65
import static org .hibernate .query .sqm .internal .SqmUtil .isSelectionAssignableToResultType ;
67
66
68
67
/**
69
- * Standard Hibernate implementation of SelectQueryPlan for SQM-backed
70
- * {@link Query} implementations, which means
71
- * HQL/JPQL or {@link jakarta.persistence.criteria.CriteriaQuery}
68
+ * Standard implementation of {@link SelectQueryPlan} for SQM-backed
69
+ * implementations of {@link org.hibernate.query. Query}, that is, for
70
+ * HQL/JPQL or for {@link jakarta.persistence.criteria.CriteriaQuery}.
72
71
*
73
72
* @author Steve Ebersole
74
73
*/
You can’t perform that action at this time.
0 commit comments