HHH-10484 - MySQLDialect override Dialect#isJdbcLogWarningsEnabledByDefault() to return false
This commit is contained in:
parent
624ddc620b
commit
19d86c3d65
|
@ -522,4 +522,9 @@ public class MySQLDialect extends Dialect {
|
|||
public IdentityColumnSupport getIdentityColumnSupport() {
|
||||
return new MySQLIdentityColumnSupport();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isJdbcLogWarningsEnabledByDefault() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue