File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
hibernate-core/src/main/java/org/hibernate Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -1310,9 +1310,19 @@ interface LockRequest {
1310
1310
@ Override
1311
1311
<R > Query <R > createQuery (CriteriaQuery <R > criteriaQuery );
1312
1312
1313
- @ Override @ Deprecated @ SuppressWarnings ("rawtypes" )
1313
+ /**
1314
+ * Create a {@link MutationQuery} for the given JPA {@link CriteriaDelete}
1315
+ *
1316
+ * @deprecated use {@link #createMutationQuery(CriteriaDelete)}
1317
+ */
1318
+ @ Override @ Deprecated (since = "6.0" ) @ SuppressWarnings ("rawtypes" )
1314
1319
Query createQuery (CriteriaDelete deleteQuery );
1315
1320
1316
- @ Override @ Deprecated @ SuppressWarnings ("rawtypes" )
1321
+ /**
1322
+ * Create a {@link MutationQuery} for the given JPA {@link CriteriaUpdate}
1323
+ *
1324
+ * @deprecated use {@link #createMutationQuery(CriteriaUpdate)}
1325
+ */
1326
+ @ Override @ Deprecated (since = "6.0" ) @ SuppressWarnings ("rawtypes" )
1317
1327
Query createQuery (CriteriaUpdate updateQuery );
1318
1328
}
You can’t perform that action at this time.
0 commit comments