Skip to content

Commit ed26482

Browse files
committed
Fix doc tests
1 parent bea45e3 commit ed26482

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

docs/reference/esql/esql-rest.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ Which returns:
193193
----
194194
{
195195
"took": 28,
196+
"is_partial": false,
196197
"columns": [
197198
{"name": "author", "type": "text"},
198199
{"name": "name", "type": "text"},

docs/reference/esql/multivalued-fields.asciidoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Multivalued fields come back as a JSON array:
2727
----
2828
{
2929
"took": 28,
30+
"is_partial": false,
3031
"columns": [
3132
{ "name": "a", "type": "long"},
3233
{ "name": "b", "type": "long"}
@@ -78,6 +79,7 @@ And {esql} sees that removal:
7879
----
7980
{
8081
"took": 28,
82+
"is_partial": false,
8183
"columns": [
8284
{ "name": "a", "type": "long"},
8385
{ "name": "b", "type": "keyword"}
@@ -122,6 +124,7 @@ And {esql} also sees that:
122124
----
123125
{
124126
"took": 28,
127+
"is_partial": false,
125128
"columns": [
126129
{ "name": "a", "type": "long"},
127130
{ "name": "b", "type": "long"}
@@ -165,6 +168,7 @@ POST /_query
165168
----
166169
{
167170
"took": 28,
171+
"is_partial": false,
168172
"columns": [
169173
{ "name": "a", "type": "long"},
170174
{ "name": "b", "type": "keyword"}
@@ -198,6 +202,7 @@ POST /_query
198202
----
199203
{
200204
"took": 28,
205+
"is_partial": false,
201206
"columns": [
202207
{ "name": "a", "type": "long"},
203208
],
@@ -241,6 +246,7 @@ POST /_query
241246
----
242247
{
243248
"took": 28,
249+
"is_partial": false,
244250
"columns": [
245251
{ "name": "a", "type": "long"},
246252
{ "name": "b", "type": "long"},
@@ -278,6 +284,7 @@ POST /_query
278284
----
279285
{
280286
"took": 28,
287+
"is_partial": false,
281288
"columns": [
282289
{ "name": "a", "type": "long"},
283290
{ "name": "b", "type": "long"},

muted-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,6 @@ tests:
228228
- class: org.elasticsearch.reservedstate.service.FileSettingsServiceTests
229229
method: testInvalidJSON
230230
issue: https://github.com/elastic/elasticsearch/issues/120482
231-
- class: org.elasticsearch.smoketest.DocsClientYamlTestSuiteIT
232-
issue: https://github.com/elastic/elasticsearch/issues/120497
233231
- class: org.elasticsearch.xpack.sql.expression.function.scalar.datetime.DateTimeToCharProcessorTests
234232
issue: https://github.com/elastic/elasticsearch/issues/120575
235233
- class: org.elasticsearch.discovery.ec2.DiscoveryEc2KeystoreCredentialsIT

0 commit comments

Comments
 (0)