Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes query result parsing where last row has error
  • Loading branch information
Henrik Lundgren committed Jun 6, 2012
1 parent 8c89cc3 commit b33256c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -196,7 +196,7 @@ private void skipToField(JsonParser jp, String fieldName, ParseState state)
JsonNode error = jp.readValueAsTree();
if (ignoreNotFound
&& error.asText().equals("not_found")) {
//lastFieldName = null;
lastFieldName = null;
state.inRow = false;
jp.nextToken();
} else {
Expand Down

0 comments on commit b33256c

Please sign in to comment.