Fix incorrect Javadoc on Dialect.forUpdateOfColumns()

Related to HHH-14210
This commit is contained in:
Gavin King 2020-09-11 21:17:28 +02:00 committed by Andrea Boriero
parent 852786d984
commit dc0cabad5d
1 changed files with 4 additions and 3 deletions

View File

@ -1396,10 +1396,11 @@ public abstract class Dialect implements ConversionContext {
}
/**
* Is <tt>FOR UPDATE OF</tt> syntax supported?
* Does the <tt>FOR UPDATE OF</tt> clause accept a list of columns
* instead of a list of table aliases?
*
* @return True if the database supports <tt>FOR UPDATE OF</tt> syntax;
* false otherwise.
* @return True if the database <tt>FOR UPDATE OF</tt> clause takes
* a column list; false otherwise.
*/
public boolean forUpdateOfColumns() {
// by default we report no support