Skip to content
Snippets Groups Projects
Commit 48729e35 authored by Michi Mutsuzaki's avatar Michi Mutsuzaki
Browse files

Merge branch 'MongoDBFix' of git://github.com/sears/YCSB into sears-MongoDBFix

parents 527f46ba e6be78ea
No related branches found
No related tags found
No related merge requests found
......@@ -148,8 +148,9 @@ public class MongoDbClient extends DB {
DBCollection collection = db.getCollection(table);
DBObject r = new BasicDBObject().append("_id", key);
r.putAll(values);
for(String k: values.keySet()) {
r.put(k, values.get(k).toString());
}
collection.setWriteConcern(writeConcern);
collection.insert(r);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment