feathub
feathub copied to clipboard
Document the limitations on the length of feature table names.
mysql_registry.py
# TODO: add document about the limitations on the length of feature
# table names.
if len(table.name) > 64:
raise FeathubException(
"Cannot build or register a descriptor with a name longer"
"than 64 characters."
)