Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,6 @@ public void testComplexFieldNames() throws IOException {
* query. It's part of the "configuration" of the query.
* </p>
*/
@AwaitsFix(bugUrl = "Disabled temporarily until JOIN implementation is completed")
public void testInlineStatsNow() throws IOException {
assumeTrue("INLINESTATS only available on snapshots", Build.current().isSnapshot());
indexTimestampData(1);
Expand All @@ -1121,8 +1120,8 @@ public void testInlineStatsNow() throws IOException {
.item("value" + i)
.item("value" + i)
.item(i)
.item(any(String.class))
.item(499.5)
.item(any(String.class))
);
}
assertResultMap(
Expand All @@ -1131,8 +1130,8 @@ public void testInlineStatsNow() throws IOException {
.item(matchesMap().entry("name", "test").entry("type", "text"))
.item(matchesMap().entry("name", "test.keyword").entry("type", "keyword"))
.item(matchesMap().entry("name", "value").entry("type", "long"))
.item(matchesMap().entry("name", "now").entry("type", "date"))
.item(matchesMap().entry("name", "AVG(value)").entry("type", "double")),
.item(matchesMap().entry("name", "AVG(value)").entry("type", "double"))
.item(matchesMap().entry("name", "now").entry("type", "date")),
values
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import java.util.Set;

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

Expand Down