[jOOQ/jOOQ#11355] Fix MARIADB RequiredVersion

This commit is contained in:
Lukas Eder 2023-02-28 09:26:42 +01:00
parent 3128345a74
commit 57102edd66

View File

@ -202,7 +202,7 @@ public enum SQLDialect {
* <p>
* This family behaves like the versioned dialect {@link #MARIADB_10_5}.
*/
MARIADB("MariaDB", false, true, SQLDialectCategory.MYSQL),
MARIADB("MariaDB", false, true, new RequiredVersion(10, 7, null), SQLDialectCategory.MYSQL),