We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 170d83c commit 411a2edCopy full SHA for 411a2ed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java
@@ -7004,7 +7004,10 @@ public void testAggThenEnrichRemote() {
7004
| eval employee_id = to_str(emp_no)
7005
| ENRICH _remote:departments
7006
"""));
7007
- assertThat(error.getMessage(), containsString("line 4:3: ENRICH with remote policy can't be executed after [STATS size=count(*) BY emp_no]@2:3"));
+ assertThat(
7008
+ error.getMessage(),
7009
+ containsString("line 4:3: ENRICH with remote policy can't be executed after [STATS size=count(*) BY emp_no]@2:3")
7010
+ );
7011
}
7012
7013
public void testEnrichBeforeLimit() {
0 commit comments