diff --git a/jOOQ/src/main/java/org/jooq/util/mysql/MySQLDSL.java b/jOOQ/src/main/java/org/jooq/util/mysql/MySQLDSL.java index fae55bc912..efff67ca8c 100644 --- a/jOOQ/src/main/java/org/jooq/util/mysql/MySQLDSL.java +++ b/jOOQ/src/main/java/org/jooq/util/mysql/MySQLDSL.java @@ -71,7 +71,10 @@ public class MySQLDSL extends DSL { * Get the MySQL-specific DECODE() function. *

* Don't mix this up with the various {@link DSL#decode()} methods! + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field decode(String cryptString, String keyString) { @@ -82,7 +85,10 @@ public class MySQLDSL extends DSL { * Get the MySQL-specific DECODE() function. *

* Don't mix this up with the various {@link DSL#decode()} methods! + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field decode(byte[] cryptString, byte[] keyString) { @@ -93,7 +99,10 @@ public class MySQLDSL extends DSL { * Get the MySQL-specific DECODE() function. *

* Don't mix this up with the various {@link DSL#decode()} methods! + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field decode(Field cryptString, Field keyString) { @@ -102,7 +111,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific ENCODE() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field encode(String string, String keyString) { @@ -111,7 +123,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific ENCODE() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field encode(byte[] string, byte[] keyString) { @@ -120,7 +135,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific ENCODE() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field encode(Field string, Field keyString) { @@ -183,7 +201,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_DECRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desDecrypt(String cryptString) { @@ -192,7 +213,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_DECRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desDecrypt(byte[] cryptString) { @@ -201,7 +225,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_DECRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desDecrypt(Field cryptString) { @@ -210,7 +237,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_DECRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desDecrypt(String cryptString, String keyString) { @@ -219,7 +249,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_DECRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desDecrypt(byte[] cryptString, byte[] keyString) { @@ -228,7 +261,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_DECRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desDecrypt(Field cryptString, Field keyString) { @@ -237,7 +273,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_ENCRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desEncrypt(String string) { @@ -246,7 +285,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_ENCRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desEncrypt(byte[] string) { @@ -255,7 +297,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_ENCRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desEncrypt(Field string) { @@ -264,7 +309,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_ENCRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desEncrypt(String string, String keyString) { @@ -273,7 +321,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_ENCRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desEncrypt(byte[] string, byte[] keyString) { @@ -282,7 +333,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific DES_ENCRYPT() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field desEncrypt(Field string, Field keyString) { @@ -426,7 +480,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific PASSWORD() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field password(String string) { @@ -435,7 +492,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific PASSWORD() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field password(byte[] string) { @@ -444,7 +504,10 @@ public class MySQLDSL extends DSL { /** * Get the MySQL-specific PASSWORD() function. + * + * @deprecated - 3.15.0 - [#8611] - This function has been removed from MySQL 8 */ + @Deprecated @NotNull @Support({ MYSQL }) public static Field password(Field string) {