This is an automated email from the ASF dual-hosted git repository.
namelchev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git
The following commit(s) were added to refs/heads/master by this push:
new fa7fc354 IGNITE-26463 Compilation fix after IGNITE-26463 (#323)
fa7fc354 is described below
commit fa7fc3546b6bae424480310befe0b7c4e38fe6cb
Author: Aleksandr Chesnokov <[email protected]>
AuthorDate: Wed Oct 8 16:48:44 2025 +0300
IGNITE-26463 Compilation fix after IGNITE-26463 (#323)
---
.../internal/processors/query/h2/H2IndexingAbstractGeoSelfTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/geospatial-ext/geospatial/src/test/java/org/apache/ignite/internal/processors/query/h2/H2IndexingAbstractGeoSelfTest.java
b/modules/geospatial-ext/geospatial/src/test/java/org/apache/ignite/internal/processors/query/h2/H2IndexingAbstractGeoSelfTest.java
index 5cd3de20..e7ed7e92 100644
---
a/modules/geospatial-ext/geospatial/src/test/java/org/apache/ignite/internal/processors/query/h2/H2IndexingAbstractGeoSelfTest.java
+++
b/modules/geospatial-ext/geospatial/src/test/java/org/apache/ignite/internal/processors/query/h2/H2IndexingAbstractGeoSelfTest.java
@@ -175,7 +175,7 @@ public abstract class H2IndexingAbstractGeoSelfTest extends
GridCommonAbstractTe
// Process indexes dynamically.
for (QueryIndex idx : idxs) {
- QueryEntity normalEntity =
QueryUtils.normalizeQueryEntity(grid(0).context(), entity,
ccfg.isSqlEscapeAll());
+ QueryEntity normalEntity =
QueryUtils.normalizeQueryEntity(grid(0).context().recoveryMode(), entity,
ccfg.isSqlEscapeAll());
createDynamicIndex(crtIgn.cache(name), normalEntity, idx);
}