Skip to content

Commit

Permalink
audit cleanup bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Dec 11, 2017
1 parent 1ef5ca6 commit fdcc0b5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -571,7 +571,7 @@ private int selectRecordsByMaxAge(Session session, String tempTable, Date minVal
String queryString = "insert into " + tempTable + " " + selectString;
LOGGER.trace("Query string = {}", queryString);
NativeQuery query = session.createNativeQuery(queryString);
query.setParameter(0, new Timestamp(minValue.getTime()));
query.setParameter(1, new Timestamp(minValue.getTime()));

return query.executeUpdate();
}
Expand Down

0 comments on commit fdcc0b5

Please sign in to comment.