Skip to content

Commit 506158f

Browse files
committed
Renable disabled tests
1 parent 7b7d3f7 commit 506158f

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,6 @@ public void testComplexFieldNames() throws IOException {
11051105
* query. It's part of the "configuration" of the query.
11061106
* </p>
11071107
*/
1108-
@AwaitsFix(bugUrl = "Disabled temporarily until JOIN implementation is completed")
11091108
public void testInlineStatsNow() throws IOException {
11101109
assumeTrue("INLINESTATS only available on snapshots", Build.current().isSnapshot());
11111110
indexTimestampData(1);
@@ -1121,8 +1120,8 @@ public void testInlineStatsNow() throws IOException {
11211120
.item("value" + i)
11221121
.item("value" + i)
11231122
.item(i)
1124-
.item(any(String.class))
11251123
.item(499.5)
1124+
.item(any(String.class))
11261125
);
11271126
}
11281127
assertResultMap(
@@ -1131,8 +1130,8 @@ public void testInlineStatsNow() throws IOException {
11311130
.item(matchesMap().entry("name", "test").entry("type", "text"))
11321131
.item(matchesMap().entry("name", "test.keyword").entry("type", "keyword"))
11331132
.item(matchesMap().entry("name", "value").entry("type", "long"))
1134-
.item(matchesMap().entry("name", "now").entry("type", "date"))
1135-
.item(matchesMap().entry("name", "AVG(value)").entry("type", "double")),
1133+
.item(matchesMap().entry("name", "AVG(value)").entry("type", "double"))
1134+
.item(matchesMap().entry("name", "now").entry("type", "date")),
11361135
values
11371136
);
11381137
}

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/JoinTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
import java.util.Set;
2525

2626
public class JoinTests extends ESTestCase {
27-
@AwaitsFix(bugUrl = "Test needs updating to the new JOIN planning")
2827
public void testExpressionsAndReferences() {
2928
int numMatchFields = between(1, 10);
3029

0 commit comments

Comments
 (0)