Removed checkpoint call

Signed-off-by: Andrew DeMaria <lostonamountain@gmail.com>
This commit is contained in:
Andrew DeMaria
2017-01-04 23:37:35 -07:00
parent 7b304cf57d
commit f57da83df1
@@ -676,7 +676,6 @@ public class MediaFileDao extends AbstractDao {
for (int id = minId; id <= maxId; id += batchSize) { for (int id = minId; id <= maxId; id += batchSize) {
update("delete from media_file where id between ? and ? and not present", id, id + batchSize); update("delete from media_file where id between ? and ? and not present", id, id + batchSize);
} }
update("checkpoint");
} }
private static class MediaFileMapper implements RowMapper<MediaFile> { private static class MediaFileMapper implements RowMapper<MediaFile> {