KEYCLOAK-18074 Ignore server version for MySQL in ChangeLogHistoryService
This commit is contained in:
parent
1be81bff7a
commit
8feefe94ac
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public class CustomChangeLogHistoryService extends StandardChangeLogHistoryServi
|
|||
@Override
|
||||
public List<RanChangeSet> getRanChangeSets() throws DatabaseException {
|
||||
Database database = getDatabase();
|
||||
if (! (database instanceof MySQLDatabase) || database.getDatabaseMajorVersion() < 8) {
|
||||
if (! (database instanceof MySQLDatabase)) {
|
||||
return super.getRanChangeSets();
|
||||
}
|
||||
if (this.ranChangeSetList == null) {
|
||||
|
|
Loading…
Reference in a new issue