Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,6 @@ tests:
- class: org.elasticsearch.xpack.inference.qa.mixed.CohereServiceMixedIT
method: testCohereEmbeddings
issue: https://github.com/elastic/elasticsearch/issues/130010
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT
issue: https://github.com/elastic/elasticsearch/issues/128224
- class: org.elasticsearch.xpack.autoscaling.storage.ReactiveStorageIT
method: testScaleDuringSplitOrClone
issue: https://github.com/elastic/elasticsearch/issues/130044
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ public class CsvTestsDataLoader {
Map.entry(SEMANTIC_TEXT.indexName, SEMANTIC_TEXT),
Map.entry(LOGS.indexName, LOGS),
Map.entry(MV_TEXT.indexName, MV_TEXT),
Map.entry(DENSE_VECTOR.indexName, DENSE_VECTOR),
// Awaitsfix: https://github.com/elastic/elasticsearch/issues/130085
// Map.entry(DENSE_VECTOR.indexName, DENSE_VECTOR),
Map.entry(COLORS.indexName, COLORS)
);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

# All tests skipped for now due to issues in bwc tests
# https://github.com/elastic/elasticsearch/issues/130085
retrieveDenseVectorData
required_capability: dense_vector_field_type
required_capability: awaitsfix

FROM dense_vector
| KEEP id, vector
Expand All @@ -16,6 +18,7 @@ id:l | vector:dense_vector

denseVectorWithEval
required_capability: dense_vector_field_type
required_capability: awaitsfix

FROM dense_vector
| EVAL v = vector
Expand All @@ -32,6 +35,7 @@ id:l | v:dense_vector

denseVectorWithRenameAndDrop
required_capability: dense_vector_field_type
required_capability: awaitsfix

FROM dense_vector
| EVAL v = vector
Expand Down