When dataintegrity=true, no field values in passed to verifyRow() for verify and keep on getting error.
This commit is contained in:
Windz 2016-06-30 11:59:18 +08:00 коммит произвёл GitHub
Родитель 164b74c497
Коммит 44660de713
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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();