Package org.apache.gravitino
Interface SchemaChange
- All Known Implementing Classes:
SchemaChange.RemoveProperty,SchemaChange.SetProperty
NamespaceChange class to set the property and value pairs for the namespace.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classSchemaChange class to remove a property from the schema.static final classSchemaChange class to set the property and value pairs for the schema. -
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic SchemaChangeremoveProperty(String property) SchemaChange class to remove a property from the schema.static SchemaChangesetProperty(String property, String value) SchemaChange class to set the property and value pairs for the schema.
-
Method Details
-
setProperty
SchemaChange class to set the property and value pairs for the schema.- Parameters:
property- The property name to set.value- The value to set the property to.- Returns:
- The SchemaChange object.
-
removeProperty
SchemaChange class to remove a property from the schema.- Parameters:
property- The property name to remove.- Returns:
- The SchemaChange object.
-