Ensure capacity in results for MongoDBClient.scan

This commit is contained in:
Jeff Yemin 2015-07-09 20:44:27 -04:00 коммит произвёл Robert J. Moore
Родитель 8ae0bd30aa
Коммит c5ff3bf647
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -353,6 +353,9 @@ public class MongoDbClient extends DB {
System.err.println("Nothing found in scan for key " + startkey);
return 1;
}
result.ensureCapacity(recordcount);
while (cursor.hasNext()) {
HashMap<String, ByteIterator> resultMap = new HashMap<String, ByteIterator>();