SQL: Handle rename in core

Original commit: elastic/x-pack-elasticsearch@32cd41e6c8
This commit is contained in:
Nik Everett 2018-01-30 12:49:33 -05:00
parent 6631fe0376
commit 116807ef54
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ import java.util.Objects;
import static java.util.Collections.unmodifiableList;
import static org.elasticsearch.common.xcontent.ConstructingObjectParser.constructorArg;
import static org.elasticsearch.common.xcontent.ConstructingObjectParser.optionalConstructorArg;
import static org.elasticsearch.common.xcontent.XContentParserUtils.parseStoredFieldsValue;
import static org.elasticsearch.common.xcontent.XContentParserUtils.parseFieldsValue;
/**
* Response to perform an sql query
@ -217,7 +217,7 @@ public class SqlQueryResponse extends ActionResponse implements ToXContentObject
List<Object> list = new ArrayList<>();
while (parser.nextToken() != XContentParser.Token.END_ARRAY) {
if (parser.currentToken().isValue()) {
list.add(parseStoredFieldsValue(parser));
list.add(parseFieldsValue(parser));
} else if (parser.currentToken() == XContentParser.Token.VALUE_NULL) {
list.add(null);
} else {