OpenSearch/rest-api-spec/test/index/35_external_version.yaml

56 lines
1.2 KiB
YAML
Raw Normal View History

2013-06-23 16:03:05 -04:00
---
"External version":
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
version_type: external
version: 0
- match: { _version: 0 }
2013-06-23 16:03:05 -04:00
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
version_type: external
version: 5
- match: { _version: 5 }
2013-06-23 16:03:05 -04:00
- do:
catch: conflict
index:
index: test_1
type: test
id: 1
body: { foo: bar }
version_type: external
version: 5
- do:
catch: conflict
index:
index: test_1
type: test
id: 1
body: { foo: bar }
version_type: external
version: 0
2013-06-23 16:03:05 -04:00
- do:
index:
index: test_1
type: test
id: 1
body: { foo: bar }
version_type: external
version: 6
2013-06-23 16:03:05 -04:00
- match: { _version: 6}