Skip to content

Commit fc3047b

Browse files
authored
Fix verifier test for 9.0 (elastic#131638)
1 parent 5a9941a commit fc3047b

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,6 @@ tests:
244244
- class: org.elasticsearch.packaging.test.DockerTests
245245
method: test070BindMountCustomPathConfAndJvmOptions
246246
issue: https://github.com/elastic/elasticsearch/issues/131366
247-
- class: org.elasticsearch.xpack.esql.analysis.VerifierTests
248-
method: testRemoteEnrichAfterLookupJoin
249-
issue: https://github.com/elastic/elasticsearch/issues/131631
250247

251248
# Examples:
252249
#

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,12 @@ public static IndexResolution expandedDefaultIndexResolution() {
143143
}
144144

145145
public static Map<String, IndexResolution> defaultLookupResolution() {
146-
return Map.of("languages_lookup", loadMapping("mapping-languages.json", "languages_lookup", IndexMode.LOOKUP));
146+
return Map.of(
147+
"languages_lookup",
148+
loadMapping("mapping-languages.json", "languages_lookup", IndexMode.LOOKUP),
149+
"test_lookup",
150+
loadMapping("mapping-basic.json", "test_lookup", IndexMode.LOOKUP)
151+
);
147152
}
148153

149154
public static EnrichResolution defaultEnrichResolution() {

0 commit comments

Comments
 (0)