Skip to content

Commit

Permalink
Fix wrong SQL statement when creating foreign keys for Oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
sdbuehlmann committed Feb 22, 2024
1 parent 877d314 commit 369ae58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public String create(final QualifiedTableId tableId, final MetaForeignKey foreig
.append(references.stream()
.map(foreignKeyReference -> idEncoder.encodeKeySensitive(foreignKeyReference.getReferenced().getColumn()))
.collect(Collectors.joining(", ")))
.append(")");
.append(");");

// actions
Optional.ofNullable(foreignKeyMetaData.getDeleteAction())
Expand Down

0 comments on commit 369ae58

Please sign in to comment.