[jOOQ/jOOQ#9675] PosrgreSQL dialects: Support MD5() function

This commit is contained in:
Knut Wannheden 2019-12-16 17:45:08 +01:00
parent 0bef99c814
commit 01293746f9

View File

@ -14232,7 +14232,7 @@ public class DSL {
* </tr>
* </table>
*/
@Support({ MARIADB, MYSQL })
@Support({ MARIADB, MYSQL, POSTGRES })
public static Field<String> md5(String string) {
return md5(Tools.field(string));
}
@ -14265,7 +14265,7 @@ public class DSL {
* </tr>
* </table>
*/
@Support({ MARIADB, MYSQL })
@Support({ MARIADB, MYSQL, POSTGRES })
public static Field<String> md5(Field<String> string) {
return new MD5(nullSafe(string));
}