jerryshao commented on code in PR #6842:
URL: https://github.com/apache/gravitino/pull/6842#discussion_r2046851310
##########
core/src/main/java/org/apache/gravitino/utils/NameIdentifierUtil.java:
##########
@@ -45,6 +46,18 @@ public class NameIdentifierUtil {
private NameIdentifierUtil() {}
+ /**
+ * Create a NameIdentifier for any metadata type
+ *
+ * @param metadataType metadataType
+ * @param metadataNames metadata names, such as metalake-a,catalog-b,schema-c
+ * @return NameIdentifier
+ */
+ public static NameIdentifier of(
+ MetadataObject.Type metadataType, Map<String, String> metadataNames) {
+ return null;
+ }
Review Comment:
The method definition is a little weird, can you give me some examples about
how to use this method, especially the map, what is the key and value.
--
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]