Skip to content

Commit e80b881

Browse files
Remove condition for fixed bug
1 parent 246caeb commit e80b881

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,9 +574,7 @@ private static boolean fieldCanBeUsed(Column field) {
574574
// https://github.com/elastic/elasticsearch/issues/121741
575575
field.name().equals("<all-fields-projected>")
576576
// this is a known pathological case, no need to test it for now
577-
|| field.name().equals("<no-fields>")
578-
// https://github.com/elastic/elasticsearch/issues/125870
579-
|| field.name().isEmpty()) == false;
577+
|| field.name().equals("<no-fields>")) == false;
580578
}
581579

582580
}

0 commit comments

Comments
 (0)