Skip to content

Commit

Permalink
awaits fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHegarty committed Oct 2, 2023
1 parent 2ab12a1 commit 052b3f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public void testDouble() throws InterruptedException, IOException {
assertThat(getValuesList(response), equalTo(List.of(List.of((double) SIZE))));
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100141")
public void testKeyword() throws InterruptedException, IOException {
createIndexWithConstRuntimeField("keyword");
try (EsqlQueryResponse response = run("from test | keep const | limit 1")) {
Expand All @@ -74,6 +75,7 @@ public void testKeyword() throws InterruptedException, IOException {
* Test grouping by runtime keyword which requires disabling the ordinals
* optimization available to more keyword fields.
*/
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100141")
public void testKeywordBy() throws InterruptedException, IOException {
createIndexWithConstRuntimeField("keyword");
EsqlQueryResponse response = run("from test | stats max(foo) by const");
Expand All @@ -87,6 +89,7 @@ public void testBoolean() throws InterruptedException, IOException {
}
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100141")
public void testDate() throws InterruptedException, IOException {
createIndexWithConstRuntimeField("date");
EsqlQueryResponse response = run("""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
@LuceneTestCase.SuppressFileSystems(value = "HandleLimitFS")
public class ManyShardsIT extends AbstractEsqlIntegTestCase {

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/100142")
public void testConcurrentQueries() throws Exception {
int numIndices = between(10, 20);
for (int i = 0; i < numIndices; i++) {
Expand Down

0 comments on commit 052b3f6

Please sign in to comment.