2013-06-28 13:44:13 -04:00
|
|
|
---
|
|
|
|
"Parent":
|
2013-07-01 10:00:12 -04:00
|
|
|
|
2013-06-28 13:44:13 -04:00
|
|
|
- do:
|
|
|
|
indices.create:
|
|
|
|
index: test_1
|
|
|
|
body:
|
|
|
|
mappings:
|
|
|
|
test:
|
|
|
|
_parent: { type: "foo" }
|
|
|
|
- do:
|
|
|
|
cluster.health:
|
|
|
|
wait_for_status: yellow
|
|
|
|
|
2013-07-01 10:00:12 -04:00
|
|
|
- do:
|
|
|
|
catch: /RoutingMissingException/
|
|
|
|
update:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
body:
|
|
|
|
doc: { foo: baz }
|
|
|
|
upsert: { foo: bar }
|
|
|
|
|
2013-06-28 13:44:13 -04:00
|
|
|
- do:
|
|
|
|
update:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
parent: 5
|
|
|
|
body:
|
|
|
|
doc: { foo: baz }
|
|
|
|
upsert: { foo: bar }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
get:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
parent: 5
|
|
|
|
fields: [_parent, _routing]
|
|
|
|
|
|
|
|
- match: { fields._parent: 5}
|
|
|
|
- match: { fields._routing: 5}
|
|
|
|
|
|
|
|
- do:
|
|
|
|
catch: missing
|
|
|
|
update:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
body:
|
|
|
|
doc: { foo: baz }
|
|
|
|
|
|
|
|
- do:
|
|
|
|
update:
|
|
|
|
index: test_1
|
|
|
|
type: test
|
|
|
|
id: 1
|
|
|
|
parent: 5
|
|
|
|
fields: foo
|
|
|
|
body:
|
|
|
|
doc: { foo: baz }
|
|
|
|
|
|
|
|
- match: { get.fields.foo: baz }
|
|
|
|
|