File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -228,14 +228,14 @@ public void testRemoteEnrichAfterCoordinatorOnlyPlans() {
228228
229229 err = error ("""
230230 FROM test
231- | COMPLETION language_code = "some prompt" WITH { "inference_id" : "completion-inference-id" }
231+ | COMPLETION language_code = CONCAT( "some prompt: ", first_name) WITH { "inference_id" : "completion-inference-id" }
232232 | ENRICH _remote:languages ON language_code
233233 """ , analyzer );
234234 assertThat (
235235 err ,
236236 containsString (
237237 "ENRICH with remote policy can't be executed after "
238- + "[COMPLETION language_code = \" some prompt\" WITH { \" inference_id\" : \" completion-inference-id\" }]@2:3"
238+ + "[COMPLETION language_code = CONCAT( \" some prompt: \" , first_name) WITH { \" inference_id\" : \" completion-inference-id\" }]@2:3"
239239 )
240240 );
241241
You can’t perform that action at this time.
0 commit comments