Skip to content

Commit

Permalink
fix ut test
Browse files Browse the repository at this point in the history
  • Loading branch information
PeachThinking committed Mar 18, 2024
1 parent 24e80e2 commit d95b88b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public void test_updateConstraint() {
fkOnluyInSource.setComparisonResult(ComparisonResult.ONLY_IN_SOURCE);
fkOnluyInSource.setChangeScript("ALTER TABLE \"" + targetSchemaName
+ "\".\"UPDATE_CONSTRAINT\" ADD CONSTRAINT \"FK_ONLY_IN_SOURCE\" FOREIGN KEY "
+ "(\"ID2\", \"ID1\") REFERENCES \"" + targetSchemaName + "\".\"FK_PARENT\" (\"PARENT_ID1\", "
+ "(\"ID1\", \"ID2\") REFERENCES \"" + targetSchemaName + "\".\"FK_PARENT\" (\"PARENT_ID1\", "
+ "\"PARENT_ID2\");\n");

List<DBObjectComparisonResult> expected = new ArrayList<>();
Expand Down

0 comments on commit d95b88b

Please sign in to comment.