mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Merge pull request #5934 from epixa/3882-4.3-mapper-longints
[savedObjects] change the number mappings to be 'long'
This commit is contained in:
commit
a0831295b6
3 changed files with 5 additions and 5 deletions
|
@ -47,12 +47,12 @@ define(function (require) {
|
|||
// if type:dashboard has no mapping, we push this mapping into ES
|
||||
SavedDashboard.mapping = {
|
||||
title: 'string',
|
||||
hits: 'integer',
|
||||
hits: 'long',
|
||||
description: 'string',
|
||||
panelsJSON: 'string',
|
||||
optionsJSON: 'string',
|
||||
uiStateJSON: 'string',
|
||||
version: 'integer',
|
||||
version: 'long',
|
||||
timeRestore: 'boolean',
|
||||
timeTo: 'string',
|
||||
timeFrom: 'string',
|
||||
|
|
|
@ -33,10 +33,10 @@ define(function (require) {
|
|||
SavedSearch.mapping = {
|
||||
title: 'string',
|
||||
description: 'string',
|
||||
hits: 'integer',
|
||||
hits: 'long',
|
||||
columns: 'string',
|
||||
sort: 'string',
|
||||
version: 'integer'
|
||||
version: 'long'
|
||||
};
|
||||
|
||||
SavedSearch.searchSource = true;
|
||||
|
|
|
@ -48,7 +48,7 @@ define(function (require) {
|
|||
uiStateJSON: 'string',
|
||||
description: 'string',
|
||||
savedSearchId: 'string',
|
||||
version: 'integer'
|
||||
version: 'long'
|
||||
};
|
||||
|
||||
SavedVis.searchSource = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue