Set readFromDocValues to false for geo_shape fields (#64014)

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
Nathan Reese 2020-04-22 14:40:09 -06:00 committed by GitHub
parent 7eab5d2ddf
commit 65264aa790
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 2 deletions

View file

@ -0,0 +1,42 @@
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import { shouldReadFieldFromDocValues } from './should_read_field_from_doc_values';
describe('shouldReadFieldFromDocValues', () => {
test('should read field from doc values for aggregatable "number" field', async () => {
expect(shouldReadFieldFromDocValues(true, 'number')).toBe(true);
});
test('should not read field from doc values for non-aggregatable "number "field', async () => {
expect(shouldReadFieldFromDocValues(false, 'number')).toBe(false);
});
test('should not read field from doc values for "text" field', async () => {
expect(shouldReadFieldFromDocValues(true, 'text')).toBe(false);
});
test('should not read field from doc values for "geo_shape" field', async () => {
expect(shouldReadFieldFromDocValues(true, 'geo_shape')).toBe(false);
});
test('should not read field from doc values for underscore field', async () => {
expect(shouldReadFieldFromDocValues(true, '_source')).toBe(false);
});
});

View file

@ -18,5 +18,5 @@
*/
export function shouldReadFieldFromDocValues(aggregatable: boolean, esType: string) {
return aggregatable && esType !== 'text' && !esType.startsWith('_');
return aggregatable && !['text', 'geo_shape'].includes(esType) && !esType.startsWith('_');
}

View file

@ -51,7 +51,7 @@ function getDocValueAndSourceFields(indexPattern, fieldNames) {
lang: field.lang,
},
};
} else if (field.type !== ES_GEO_FIELD_TYPE.GEO_SHAPE && field.readFromDocValues) {
} else if (field.readFromDocValues) {
const docValueField =
field.type === 'date'
? {