2013-07-15 09:01:48 -04:00
|
|
|
---
|
|
|
|
"delete mapping tests":
|
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_index
|
|
|
|
body:
|
|
|
|
mappings:
|
|
|
|
test_type:
|
|
|
|
properties:
|
|
|
|
text:
|
|
|
|
type: string
|
|
|
|
analyzer: whitespace
|
|
|
|
|
2014-05-09 06:04:25 -04:00
|
|
|
- do:
|
|
|
|
cluster.health:
|
2014-07-07 16:17:07 -04:00
|
|
|
wait_for_status: yellow
|
2014-05-09 06:04:25 -04:00
|
|
|
|
2013-07-15 09:01:48 -04:00
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index
|
|
|
|
type: test_type
|
|
|
|
|
|
|
|
- is_true: ''
|
|
|
|
|
|
|
|
- do:
|
|
|
|
indices.delete_mapping:
|
|
|
|
index: test_index
|
|
|
|
type: test_type
|
2014-07-07 16:17:07 -04:00
|
|
|
|
2013-07-15 09:01:48 -04:00
|
|
|
- do:
|
|
|
|
indices.exists_type:
|
|
|
|
index: test_index
|
|
|
|
type: test_type
|
|
|
|
|
|
|
|
- is_false: ''
|