[jOOQ/jOOQ#9772] Add SQLDialect.MYSQL_8_0_19

This commit is contained in:
Lukas Eder 2020-01-29 17:28:28 +01:00
parent 515f98753c
commit 8315870538
4 changed files with 12 additions and 1 deletions

View File

@ -192,7 +192,7 @@ public enum SQLDialect {
/**
* The MySQL dialect family.
* <p>
* This family behaves like the versioned dialect {@link #MYSQL_8_0}.
* This family behaves like the versioned dialect {@link #MYSQL_8_0_19}.
*/
MYSQL("MySQL", false, true),
@ -207,6 +207,14 @@ public enum SQLDialect {

View File

@ -456,6 +456,7 @@ final class InsertQueryImpl<R extends Record> extends AbstractStoreQuery<R> impl
case MYSQL:
case MARIADB: {
toSQLInsert(ctx);

View File

@ -268,6 +268,7 @@ final class Limit extends AbstractQueryPart {
// [#4785] OFFSET cannot be without LIMIT

View File

@ -710,6 +710,7 @@ final class SelectQueryImpl<R extends Record> extends AbstractResultQuery<R> imp
case CUBRID: