File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
hibernate-core/src/main/java/org/hibernate/jpa Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 4
4
*/
5
5
package org .hibernate .jpa ;
6
6
7
- import org .hibernate .type .BindableType ;
8
-
9
7
/**
10
8
* List of Hibernate-specific (extension) hints available to query,
11
9
* load, and lock scenarios.
@@ -167,15 +165,15 @@ public interface HibernateHints {
167
165
168
166
/**
169
167
* The {@linkplain org.hibernate.type.SqlTypes JDBC type code},
170
- * {@linkplain BindableType type}, or
168
+ * {@linkplain jakarta.persistence.metamodel.Type type}, or
171
169
* {@link Class} of the value returned by a SQL function called
172
170
* via {@link org.hibernate.procedure.ProcedureCall} or
173
171
* {@link jakarta.persistence.StoredProcedureQuery}. Has the side
174
172
* effect of causing the call to be treated as a function call
175
173
* rather than a call to a stored procedure.
176
174
*
177
175
* @see org.hibernate.procedure.ProcedureCall#markAsFunctionCall(int)
178
- * @see org.hibernate.procedure.ProcedureCall#markAsFunctionCall(BindableType )
176
+ * @see org.hibernate.procedure.ProcedureCall#markAsFunctionCall(jakarta.persistence.metamodel.Type )
179
177
* @see org.hibernate.procedure.ProcedureCall#markAsFunctionCall(Class)
180
178
*/
181
179
String HINT_CALLABLE_FUNCTION_RETURN_TYPE = "hibernate.procedure.function_return_jdbc_type_code" ;
You can’t perform that action at this time.
0 commit comments