lowka commented on code in PR #6834:
URL: https://github.com/apache/ignite-3/pull/6834#discussion_r2454612193
##########
modules/catalog/src/test/java/org/apache/ignite/internal/catalog/storage/CatalogSerializationChecker.java:
##########
@@ -238,4 +262,98 @@ private void checkVersion(int typeId, int entryVersion) {
}
}
}
+
+ private static String binFileName(String entryFileName, int entryVersion) {
+ return format("{}_{}.bin", entryFileName, entryVersion);
+ }
+
+ static Set<SerializerClass> findEntrySerializers() {
+ Set<Class<?>> classes = findClasses(CatalogObjectSerializer.class);
Review Comment:
This should use `MarshallableEntryType`
--
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]