xtern commented on a change in pull request #7648:
URL: https://github.com/apache/ignite/pull/7648#discussion_r411588431
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/binary/BinaryClassDescriptor.java
##########
@@ -421,7 +421,7 @@ boolean isBinary() {
/**
* @return Described class.
*/
- Class<?> describedClass() {
+ public Class<?> describedClass() {
Review comment:
Fixed, thank you.
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java
##########
@@ -2949,6 +2949,17 @@ private String typeName(@Nullable String cacheName,
String typeName) throws Igni
return type.name();
}
+ /**
+ * Gets type descriptor for provided cache name and type name if type is
still valid.
+ *
+ * @param cacheName Cache name.
+ * @param typeName Type name.
+ * @return Query type descriptor or {@code null} if descriptor was not
found.
+ */
+ public @Nullable QueryTypeDescriptorImpl typeDescriptor(@Nullable String
cacheName, String typeName) {
Review comment:
Done
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]