This is an automated email from the ASF dual-hosted git repository.

nizhikov 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 d3f0e55d IGNITE-26044 Compilation fix (#315)
d3f0e55d is described below

commit d3f0e55da5c0980a6203919a78f62fd1e47e6f87
Author: Nikolay <nizhi...@apache.org>
AuthorDate: Thu Jul 31 10:53:59 2025 +0300

    IGNITE-26044 Compilation fix (#315)
---
 .../cdc/kafka/KafkaToIgniteMetadataUpdaterTest.java     | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git 
a/modules/cdc-ext/src/test/java/org/apache/ignite/cdc/kafka/KafkaToIgniteMetadataUpdaterTest.java
 
b/modules/cdc-ext/src/test/java/org/apache/ignite/cdc/kafka/KafkaToIgniteMetadataUpdaterTest.java
index fc87150d..67b47238 100644
--- 
a/modules/cdc-ext/src/test/java/org/apache/ignite/cdc/kafka/KafkaToIgniteMetadataUpdaterTest.java
+++ 
b/modules/cdc-ext/src/test/java/org/apache/ignite/cdc/kafka/KafkaToIgniteMetadataUpdaterTest.java
@@ -21,9 +21,12 @@ import java.util.Collections;
 import org.apache.ignite.IgniteException;
 import org.apache.ignite.cdc.CdcConsumer;
 import org.apache.ignite.cdc.TypeMapping;
+import org.apache.ignite.configuration.BinaryConfiguration;
 import org.apache.ignite.internal.binary.BinaryContext;
+import org.apache.ignite.internal.binary.BinaryUtils;
 import org.apache.ignite.internal.cdc.TypeMappingImpl;
 import org.apache.ignite.internal.processors.metric.MetricRegistryImpl;
+import org.apache.ignite.internal.util.typedef.internal.CU;
 import org.apache.ignite.platform.PlatformType;
 import org.apache.ignite.testframework.GridTestUtils;
 import org.apache.ignite.testframework.ListeningTestLogger;
@@ -165,7 +168,19 @@ public class KafkaToIgniteMetadataUpdaterTest extends 
GridCommonAbstractTest {
 
     /** */
     private KafkaToIgniteMetadataUpdater 
metadataUpdater(KafkaToIgniteCdcStreamerConfiguration streamerCfg) {
-        BinaryContext noOpCtx = new BinaryContext(log) {
+        BinaryContext noOpCtx = new BinaryContext(
+            BinaryUtils.cachingMetadataHandler(),
+            null,
+            null,
+            null,
+            null,
+            null,
+            null,
+            null,
+            CU.affinityFields(null),
+            BinaryConfiguration.DFLT_COMPACT_FOOTER,
+            log
+        ) {
             @Override public boolean registerUserClassName(int typeId, String 
clsName, boolean failIfUnregistered,
                 boolean onlyLocReg, byte platformId) {
                 return true;

Reply via email to