You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Validation rules for database names is possibly wrong (at least for PostgreSQL DBs). Valid names cannot have dashes but can have underscores, but as we can see here:
we're specifying the validateLeadingAlphaNumericDash rule, which would allow invalid PostgreSQL database names while prevent use of valid names that used an underscore.
The text was updated successfully, but these errors were encountered:
Validation rules for database names is possibly wrong (at least for PostgreSQL DBs). Valid names cannot have dashes but can have underscores, but as we can see here:
mu/common/types.go
Line 198 in c0980ac
validateLeadingAlphaNumericDash
rule, which would allow invalid PostgreSQL database names while prevent use of valid names that used an underscore.The text was updated successfully, but these errors were encountered: