Skip to content
Snippets Groups Projects
Commit 2a4f4b26 authored by Kelly Kelly's avatar Kelly Kelly
Browse files

Fixed golden run tag issue

parent b3d8c5f8
No related branches found
No related tags found
No related merge requests found
......@@ -9739,10 +9739,12 @@ public TagName addOrUpdateTagName(String displayName, String description, TagNam
long tagId = resultSet.getLong(1);
resultSet.close();
statement = connection.getPreparedStatement(PREPARED_STATEMENT.SELECT_TAG_NAME_BY_ID);
statement.clearParameters();
statement.setLong(1, tagId);
resultSet = connection.executeQuery(statement);
resultSet.next();
return new TagName(tagId,
displayName, description, color, knownStatus, resultSet.getLong("tag_set_id"), resultSet.getInt("rank"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment