mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-23 13:26:02 +00:00
unicode in index name, dot in type name
This commit is contained in:
parent
3166c17186
commit
11712e4de7
@ -3,25 +3,25 @@
|
|||||||
|
|
||||||
- do:
|
- do:
|
||||||
index:
|
index:
|
||||||
index: test_1
|
index: weird-index-中文
|
||||||
type: test
|
type: weird.type
|
||||||
id: 1
|
id: 1
|
||||||
body: { foo: bar }
|
body: { foo: bar }
|
||||||
|
|
||||||
- is_true: ok
|
- is_true: ok
|
||||||
- match: { _index: test_1 }
|
- match: { _index: weird-index-中文 }
|
||||||
- match: { _type: test }
|
- match: { _type: weird.type }
|
||||||
- match: { _id: "1"}
|
- match: { _id: "1"}
|
||||||
- match: { _version: 1}
|
- match: { _version: 1}
|
||||||
|
|
||||||
- do:
|
- do:
|
||||||
get:
|
get:
|
||||||
index: test_1
|
index: weird-index-中文
|
||||||
type: test
|
type: weird.type
|
||||||
id: 1
|
id: 1
|
||||||
|
|
||||||
- match: { _index: test_1 }
|
- match: { _index: weird-index-中文 }
|
||||||
- match: { _type: test }
|
- match: { _type: weird.type }
|
||||||
- match: { _id: "1"}
|
- match: { _id: "1"}
|
||||||
- match: { _version: 1}
|
- match: { _version: 1}
|
||||||
- match: { _source: { foo: bar }}
|
- match: { _source: { foo: bar }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user