jerryshao commented on code in PR #6751:
URL: https://github.com/apache/gravitino/pull/6751#discussion_r2021464201


##########
core/src/main/java/org/apache/gravitino/connector/PropertiesMetadata.java:
##########
@@ -35,8 +37,18 @@ public interface PropertiesMetadata {
    * @return true if the property is existed and reserved, false otherwise.
    */
   default boolean isReservedProperty(String propertyName) {
-    return propertyEntries().containsKey(propertyName)
-        && propertyEntries().get(propertyName).isReserved();
+    // First check non-prefix exact match
+    PropertyEntry<?> directEntry = propertyEntries().get(propertyName);

Review Comment:
   `nonPrefixEntry`.



-- 
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: commits-unsubscr...@gravitino.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to