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

ptupitsyn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new c2d5eb3938d IGNITE-25730 Fix 
testExecuteColocatedThrowsTableNotFoundExceptionWhenTableDoesNotExist (#6092)
c2d5eb3938d is described below

commit c2d5eb3938d90788fd79b61651ead19281e212f9
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Mon Jun 23 08:58:22 2025 +0300

    IGNITE-25730 Fix 
testExecuteColocatedThrowsTableNotFoundExceptionWhenTableDoesNotExist (#6092)
---
 .../src/test/java/org/apache/ignite/client/TestClientHandlerModule.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/modules/client/src/test/java/org/apache/ignite/client/TestClientHandlerModule.java
 
b/modules/client/src/test/java/org/apache/ignite/client/TestClientHandlerModule.java
index 4c9827298a1..faffa6deeb1 100644
--- 
a/modules/client/src/test/java/org/apache/ignite/client/TestClientHandlerModule.java
+++ 
b/modules/client/src/test/java/org/apache/ignite/client/TestClientHandlerModule.java
@@ -228,6 +228,7 @@ public class TestClientHandlerModule implements 
IgniteComponent {
             features.set(ProtocolBitmaskFeature.TX_DELAYED_ACKS.featureId());
             features.set(ProtocolBitmaskFeature.TX_PIGGYBACK.featureId());
             
features.set(ProtocolBitmaskFeature.TX_ALLOW_NOOP_ENLIST.featureId());
+            
features.set(ProtocolBitmaskFeature.TABLE_GET_REQS_USE_QUALIFIED_NAME.featureId());
         } else {
             features = new BitSet(ProtocolBitmaskFeature.values().length);
             for (int i = this.features.nextSetBit(0); i != -1; i = 
this.features.nextSetBit(i + 1)) {

Reply via email to