[#6238] Typo in AlterTableRenameConstraintToStep Javadoc
This commit is contained in:
parent
dbadeab220
commit
88e92b85a9
@ -43,17 +43,17 @@ package org.jooq;
|
||||
public interface AlterTableRenameConstraintToStep {
|
||||
|
||||
/**
|
||||
* Specify a new column name.
|
||||
* Specify a new constraint name.
|
||||
*/
|
||||
AlterTableFinalStep to(Constraint newName);
|
||||
|
||||
/**
|
||||
* Specify a new column name.
|
||||
* Specify a new constraint name.
|
||||
*/
|
||||
AlterTableFinalStep to(Name newName);
|
||||
|
||||
/**
|
||||
* Specify a new column name.
|
||||
* Specify a new constraint name.
|
||||
*/
|
||||
AlterTableFinalStep to(String newName);
|
||||
}
|
||||
@ -1027,9 +1027,9 @@ public enum Clause {
|
||||
* This clause surrounds
|
||||
* <ul>
|
||||
* <li>the <code>RENAME CONSTRAINT</code> keywords</li>
|
||||
* <li>the old column name</li>
|
||||
* <li>the old constraint name</li>
|
||||
* <li>the <code>TO</code> keyword</li>
|
||||
* <li>the new column name</li>
|
||||
* <li>the new constraint name</li>
|
||||
* </ul>
|
||||
*/
|
||||
ALTER_TABLE_RENAME_CONSTRAINT,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user