2013-06-27 05:34:24 -04:00
|
|
|
---
|
2014-01-02 13:33:19 -05:00
|
|
|
setup:
|
2013-06-27 05:34:24 -04:00
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
mappings:
|
|
|
|
test:
|
|
|
|
_parent: { type: "foo" }
|
|
|
|
- do:
|
|
|
|
cluster.health:
|
|
|
|
wait_for_status: yellow
|
|
|
|
|
|
|
|
- do:
|
|
|
|
index:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
2013-07-14 09:44:57 -04:00
|
|
|
parent: 中文
|
2013-06-27 05:34:24 -04:00
|
|
|
body: { foo: bar }
|
|
|
|
|
2014-01-02 13:33:19 -05:00
|
|
|
---
|
|
|
|
"Parent":
|
|
|
|
|
2013-06-27 05:34:24 -04:00
|
|
|
- do:
|
|
|
|
get:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
2013-07-14 09:44:57 -04:00
|
|
|
parent: 中文
|
2013-06-27 05:34:24 -04:00
|
|
|
fields: [_parent, _routing]
|
2013-07-01 09:58:23 -04:00
|
|
|
|
2013-07-10 20:21:56 -04:00
|
|
|
- match: { _id: "1"}
|
2013-07-14 09:44:57 -04:00
|
|
|
- match: { fields._parent: 中文 }
|
|
|
|
- match: { fields._routing: 中文}
|
2013-06-27 05:34:24 -04:00
|
|
|
|
2014-01-02 13:33:19 -05:00
|
|
|
---
|
2014-01-07 10:19:06 -05:00
|
|
|
"Parent omitted":
|
2014-01-02 13:33:19 -05:00
|
|
|
- do:
|
|
|
|
catch: request
|
|
|
|
get:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
|