Fixed REST test to not rely on dynamic mapping
This commit is contained in:
parent
ce7fccb287
commit
6b27de3f8c
|
@ -1,5 +1,15 @@
|
|||
---
|
||||
"Basic field stats":
|
||||
setup:
|
||||
- do:
|
||||
indices.create:
|
||||
index: test_1
|
||||
body:
|
||||
mappings:
|
||||
test:
|
||||
properties:
|
||||
foo:
|
||||
type: string
|
||||
number:
|
||||
type: long
|
||||
- do:
|
||||
index:
|
||||
index: test_1
|
||||
|
@ -10,6 +20,8 @@
|
|||
- do:
|
||||
indices.refresh: {}
|
||||
|
||||
---
|
||||
"Basic field stats":
|
||||
- do:
|
||||
field_stats:
|
||||
index: test_1
|
||||
|
@ -28,16 +40,6 @@
|
|||
|
||||
---
|
||||
"Basic field stats with level set to indices":
|
||||
- do:
|
||||
index:
|
||||
index: test_1
|
||||
type: test
|
||||
id: id_1
|
||||
body: { foo: "bar", number: 123 }
|
||||
|
||||
- do:
|
||||
indices.refresh: {}
|
||||
|
||||
- do:
|
||||
field_stats:
|
||||
index: test_1
|
||||
|
@ -57,15 +59,6 @@
|
|||
|
||||
---
|
||||
"Field stats with filtering":
|
||||
- do:
|
||||
index:
|
||||
index: test_1
|
||||
type: test
|
||||
id: id_1
|
||||
body: { foo: "bar", number: 123 }
|
||||
|
||||
- do:
|
||||
indices.refresh: {}
|
||||
|
||||
- do:
|
||||
field_stats:
|
||||
|
|
Loading…
Reference in New Issue