[jOOQ/jOOQ#8902] Add missing Support annotation to DSL.collation

This commit is contained in:
Lukas Eder 2019-07-04 16:12:05 +02:00
parent 0b470c64c1
commit e4a6bfcfd3

View File

@ -8482,6 +8482,7 @@ public class DSL {
/**
* Create a collation by its unqualified name.
*/
@Support({ HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
public static Collation collation(String collation) {
return collation(name(collation));
}
@ -8489,6 +8490,7 @@ public class DSL {
/**
* Create a collation by its qualified name.
*/
@Support({ HSQLDB, MARIADB, MYSQL, POSTGRES, SQLITE })
public static Collation collation(Name collation) {
return new CollationImpl(collation);
}