Skip to content

Commit fa13d0a

Browse files
committed
use lower version to pass geo IP test
Signed-off-by: xinyual <xinyual@amazon.com>
1 parent 90f9198 commit fa13d0a

2 files changed

Lines changed: 19 additions & 2 deletions

File tree

integ-test/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,8 +439,8 @@ integTest {
439439

440440
dependsOn ':opensearch-sql-plugin:bundlePlugin'
441441
if(getOSFamilyType() != "windows") {
442-
//dependsOn startPrometheus
443-
//finalizedBy stopPrometheus
442+
dependsOn startPrometheus
443+
finalizedBy stopPrometheus
444444
}
445445

446446
// enable calcite codegen in IT
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/*
2+
* Copyright OpenSearch Contributors
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package org.opensearch.sql.calcite.remote;
7+
8+
import org.opensearch.sql.ppl.GeoIpFunctionsIT;
9+
10+
public class CalciteGeoIpFunctionsIT extends GeoIpFunctionsIT {
11+
@Override
12+
public void init() throws Exception {
13+
super.init();
14+
enableCalcite();
15+
disallowCalciteFallback();
16+
}
17+
}

0 commit comments

Comments
 (0)