#1260 - Mark query.setForUpdate(true) as deprecated - migrate to query.forUpdate()

This commit is contained in:
Rob Bygrave
2018-02-14 15:28:13 +13:00
parent 7c477827fe
commit 2a986ab590
+3
View File
@@ -1436,9 +1436,12 @@ public interface Query<T> {
String getGeneratedSql();
/**
* Deprecated - migrate to forUpdate().
*
* executed the select with "for update" which should lock the record
* "on read"
*/
@Deprecated
Query<T> setForUpdate(boolean forUpdate);
/**