Change default MysqlDialect constructor to use version 5 instead of 4

This commit is contained in:
Andrea Boriero 2021-07-09 13:48:01 +02:00
parent c06788dd88
commit 6c98d3400f
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class MySQLDialect extends Dialect {
}
public MySQLDialect() {
this( 400 );
this( 500 );
}
public MySQLDialect(int version) {