oleg-vlsk commented on code in PR #13583:
URL: https://github.com/apache/ignite/pull/13583#discussion_r4056493813
##########
modules/indexing/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgnitePdsIndexingDefragmentationTest.java:
##########
@@ -195,7 +216,7 @@ private static void validateIndexes(IgniteEx node) throws
Exception {
*/
@Test
public void testIndexingWithIntegerKey() throws Exception {
- test(Function.identity());
+ test(Integer.class, Function.identity());
Review Comment:
`test()` expects `Class<T>`, so passing `Class<?>` will cause type mismatch.
I changed `test()` so that `indexedKeyType` is used as the key type source
directly
--
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]