unicode in index name, dot in type name

This commit is contained in:
Honza Kral 2013-07-14 15:43:07 +02:00
parent 3166c17186
commit 11712e4de7

View File

@ -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 }}