@Override
 public void editComment(Comment comment) {
   jdbcTemplate.update(
       SQL_UPDATE_COMMENT,
       comment.getPostId(),
       comment.getUserName(),
       comment.getEmail(),
       comment.getCommentText(),
       comment.getCommentDate(),
       comment.isCommentPublish(),
       comment.getCommentId());
 }