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

timoninmaxim pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 66308a0cb7d IGNITE-26164 Add toString to IndexName (#12262)
66308a0cb7d is described below

commit 66308a0cb7dd637cc4d25598e894be3d8b447a2a
Author: Andrey Nadyktov <[email protected]>
AuthorDate: Mon Aug 11 19:28:50 2025 +0300

    IGNITE-26164 Add toString to IndexName (#12262)
---
 .../java/org/apache/ignite/internal/cache/query/index/IndexName.java | 5 +++++
 1 file changed, 5 insertions(+)

diff --git 
a/modules/core/src/main/java/org/apache/ignite/internal/cache/query/index/IndexName.java
 
b/modules/core/src/main/java/org/apache/ignite/internal/cache/query/index/IndexName.java
index 57f8015a193..19229945ec6 100644
--- 
a/modules/core/src/main/java/org/apache/ignite/internal/cache/query/index/IndexName.java
+++ 
b/modules/core/src/main/java/org/apache/ignite/internal/cache/query/index/IndexName.java
@@ -85,4 +85,9 @@ public class IndexName {
     public String cacheName() {
         return cacheName;
     }
+
+    /** {@inheritDoc} */
+    @Override public String toString() {
+        return fullName();
+    }
 }

Reply via email to