using "!mssql" instead of "mysql" for MySQLDialectProvider so that if no database profile is set, the MySQLDialectProvider is used.

This commit is contained in:
Jan 2026-01-31 18:04:11 +01:00
parent ae83b0845c
commit f86e2fb1d8

View file

@ -17,7 +17,7 @@ import java.util.stream.Collectors;
* @since 1.0 * @since 1.0
*/ */
@Component @Component
@Profile("mysql") @Profile("!mssql")
public class MySQLDialectProvider implements SqlDialectProvider { public class MySQLDialectProvider implements SqlDialectProvider {
@Override @Override