Skip to content

Commit

Permalink
refactor(JdbcTableWriter): Add missing dash
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-cline committed Sep 20, 2023
1 parent 5e64021 commit c4959ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1599,7 +1599,7 @@ private void updateReferencingTables(
ResultSet resultSet = patternStopSelectStatement.getResultSet();
while (resultSet.next()) {
patternAndRouteIds.add(
"{" + resultSet.getString(1) + "-" + resultSet.getString(2) + resultSet.getString(3) + "}"
"{" + resultSet.getString(1) + "-" + resultSet.getString(2) + "-" + resultSet.getString(3) + "}"
);
}
}
Expand Down

0 comments on commit c4959ac

Please sign in to comment.