Skip to content

Commit

Permalink
chore: fix indentation issue
Browse files Browse the repository at this point in the history
indentation incorrect in #163
  • Loading branch information
nielm committed Sep 22, 2024
1 parent bd99dc4 commit 2f33b8b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -380,12 +380,12 @@ public List<String> generateDifferenceStatements(Map<String, Boolean> options)
String optionsDiff = generateOptionsUpdates(Maps.difference(oldOptionsKv, newOptionsKv));

if (optionsDiff != null) {
output.add(
"ALTER CHANGE STREAM "
+ changedChangeStream.rightValue().getName()
+ " SET OPTIONS ("
+ optionsDiff
+ ")");
output.add(
"ALTER CHANGE STREAM "
+ changedChangeStream.rightValue().getName()
+ " SET OPTIONS ("
+ optionsDiff
+ ")");
}
}
}
Expand Down

0 comments on commit 2f33b8b

Please sign in to comment.