Skip to content
Snippets Groups Projects
Commit 7d2204d2 authored by Weston Platter's avatar Weston Platter
Browse files

Merge pull request #123 from ymiao/master

[gemfire] Fix NullPointException when execute "ycsb run gemfire ..."
parents 7eff3539 34181627
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ public class GemFireClient extends DB {
if (val != null) {
if (fields == null) {
for (String k : val.keySet()) {
result.put(key, new ByteArrayByteIterator(val.get(key)));
result.put(k, new ByteArrayByteIterator(val.get(k)));
}
} else {
for (String field : fields) {
......
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