lasdf1234 commented on code in PR #11848:
URL: https://github.com/apache/gravitino/pull/11848#discussion_r3533203142
##########
core/src/main/java/org/apache/gravitino/meta/UserEntity.java:
##########
@@ -42,6 +42,12 @@ public class UserEntity implements User, Entity, Auditable,
HasIdentifier {
public static final Field NAME =
Field.required("name", String.class, "The name of the user entity.");
+ public static final Field EXTERNAL_ID =
+ Field.optional("external_id", String.class, "The external id of the user
entity.");
+
+ public static final Field ENABLED =
+ Field.required("enabled", Boolean.class, "Whether the user entity is
enabled.");
Review Comment:
Thank you for your suggestion. I reviewed the relevant code again and found
that other classes use Boolean.class, for example: PolicyEntity.
--
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]