MCPcopy Create free account
hub / github.com/dolthub/doltgresql / parseUnquotedString

Method parseUnquotedString

postgres/parser/sem/tree/parse_array.go:119–125  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

117}
118
119func (p *parseState) parseUnquotedString() (string, error) {
120 out, err := p.gobbleString(isControlChar)
121 if err != nil {
122 return "", err
123 }
124 return strings.TrimSpace(out), nil
125}
126
127func (p *parseState) parseElement() error {
128 var next string

Callers 1

parseElementMethod · 0.95

Calls 1

gobbleStringMethod · 0.95

Tested by

no test coverage detected