diff --git a/jOOQ/src/main/java/org/jooq/impl/Factory.java b/jOOQ/src/main/java/org/jooq/impl/Factory.java index b0e8aa8d71..b6d64b402c 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Factory.java +++ b/jOOQ/src/main/java/org/jooq/impl/Factory.java @@ -3997,9 +3997,24 @@ public class Factory { /** * Get the MySQL-specific MD5() function *

- * Other databases may simulate this, where available + * These are the implementations for various databases: + *

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
DatabaseImplementation
MySQLMD5( ... )
OracleLOWER(RAWTOHEX(SYS.DBMS_OBFUSCATION_TOOLKIT.MD5(INPUT_STRING => ...))
*/ - @Support({ MYSQL }) + @Support({ MYSQL, ORACLE }) public static Field md5(String string) { return md5(val(string)); } @@ -4007,9 +4022,24 @@ public class Factory { /** * Get the MySQL-specific MD5() function *

- * Other databases may simulate this, where available + * These are the implementations for various databases: + *

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
DatabaseImplementation
MySQLMD5( ... )
OracleLOWER(RAWTOHEX(SYS.DBMS_OBFUSCATION_TOOLKIT.MD5(INPUT_STRING => ...))
*/ - @Support({ MYSQL }) + @Support({ MYSQL, ORACLE }) public static Field md5(Field string) { return new MD5(nullSafe(string)); }