[jOOQ/jOOQ#12099] MySQL 8.0.20 has deprecated VALUES() for removal

This commit is contained in:
Lukas Eder 2021-07-02 09:02:08 +02:00
parent 1720701369
commit 5d60eb36f1

View File

@ -526,7 +526,14 @@ public class MySQLDSL extends DSL {
* "http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_values">
* http://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#
* function_values</a>
* @deprecated - 3.15.0 - [#12099] - MySQL 8.0.20 has deprecated this clause
* and replaced it by something new, which we'll support soon,
* see <a href=
* "https://dev.mysql.com/doc/refman/8.0/en/insert-on-duplicate.html">https://dev.mysql.com/doc/refman/8.0/en/insert-on-duplicate.html/<a>
* and <a href=
* "https://github.com/jOOQ/jOOQ/issues/12099">https://github.com/jOOQ/jOOQ/issues/12099</a>
*/
@Deprecated(forRemoval = true)
@NotNull
@Support({ MYSQL })
public static <T> Field<T> values(Field<T> values) {