pub fn parse_regobject_name(input: &str) -> Option<Vec<String>>Expand description
Parse the dotted identifier strings consumed by PostgreSQL’s reg* input functions. This follows SplitIdentifierString: surrounding component whitespace is ignored, quoted components collapse doubled quotes without case folding, unquoted components extend to a dot or whitespace and use ASCII case folding, and every component is clipped to PostgreSQL’s 63-byte identifier limit.