Skip to content

Commit

Permalink
Merge branch 'haltenwe-patch-liquibase#4723-1' into haltenwe-patch-li…
Browse files Browse the repository at this point in the history
  • Loading branch information
haltenwe committed Aug 25, 2023
2 parents 83ec8a3 + 96988f1 commit f6525f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public boolean supportsBooleanDataType() {
throw new DatabaseException("Error getting fix pack number");

return getDatabaseMajorVersion() > 11
|| getDatabaseMajorVersion() == 11 && getDatabaseMinorVersion() >= 1 && fixPack.intValue() >= 1;
|| getDatabaseMajorVersion() == 11 && ( getDatabaseMinorVersion() == 1 && fixPack.intValue() >= 1 || getDatabaseMinorVersion() > 1 );

} catch (final DatabaseException e) {
return false; // assume not
Expand Down

0 comments on commit f6525f6

Please sign in to comment.