зеркало из https://github.com/Azure/YCSB.git
logical error in decode()
When dataintegrity=true, no field values in passed to verifyRow() for verify and keep on getting error.
This commit is contained in:
Родитель
164b74c497
Коммит
44660de713
|
@ -856,7 +856,7 @@ public class Couchbase2Client extends DB {
|
|||
for (Iterator<Map.Entry<String, JsonNode>> jsonFields = json.fields(); jsonFields.hasNext();) {
|
||||
Map.Entry<String, JsonNode> jsonField = jsonFields.next();
|
||||
String name = jsonField.getKey();
|
||||
if (checkFields && fields.contains(name)) {
|
||||
if (!(checkFields && fields.contains(name))) {
|
||||
continue;
|
||||
}
|
||||
JsonNode jsonValue = jsonField.getValue();
|
||||
|
|
Загрузка…
Ссылка в новой задаче