Skip to content

Commit

Permalink
tgz: Set failOnDefferable to false to avoid failing on existing/gener…
Browse files Browse the repository at this point in the history
…ated changesets (#190)
  • Loading branch information
tgehrsitz-ite authored Mar 26, 2024
1 parent 7de98d5 commit 3bcb0f3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/liquibase/ext/hana/HanaDatabase.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ public boolean supportsInitiallyDeferrableColumns() {
return false;
}

@Override
public boolean failOnDefferable() {
return false;
}

@Override
public boolean supportsSequences() {
return true;
Expand Down

0 comments on commit 3bcb0f3

Please sign in to comment.