Copilot commented on code in PR #7406:
URL: https://github.com/apache/ignite-3/pull/7406#discussion_r2707340275


##########
modules/table/src/integrationTest/java/org/apache/ignite/internal/table/ItTableViewApiUnifiedBaseTest.java:
##########
@@ -128,6 +132,13 @@ static void assertEqualsValues(SchemaDescriptor schema, 
Tuple expected, @Nullabl
         }
     }
 
+    static void expectTypeMismatch(Executable executable, String columnName, 
ColumnType expected, ColumnType actual) {
+        //noinspection ThrowableNotThrown
+        assertThrows(MarshallerException.class, executable,
+                IgniteStringFormatter.format("Value type does not match 
[column='{}', expected={}, actual={}",

Review Comment:
   The format string is missing a closing bracket. It should be "Value type 
does not match [column='{}', expected={}, actual={}]" to match the error 
message format used elsewhere in the codebase (see Column.java line 231 and 
ClientBinaryTupleUtils.java line 283).
   ```suggestion
                   IgniteStringFormatter.format("Value type does not match 
[column='{}', expected={}, actual={}]",
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to