We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f10654a commit c8a00f0Copy full SHA for c8a00f0
quickwit/rest-api-tests/scenarii/es_compatibility/bulk/0007-illegal-index-name.yaml
@@ -0,0 +1,20 @@
1
+ndjson:
2
+ - index: { "_index": "test-index" }
3
+ - message: Hola, Mundo!
4
+ - index: { "_index": "test-index-pattern-11" }
5
6
+ - index: { "_index": "test-index-pattern-&1" }
7
8
+status_code: 200
9
+expected:
10
+ errors: true
11
+ items:
12
+ - index:
13
+ _index: test-index
14
+ status: 201
15
16
+ _index: test-index-pattern-11
17
18
19
+ _index: test-index-pattern-&1
20
+ status: 400
0 commit comments