MCPcopy Create free account
hub / github.com/auxten/postgresql-parser / parseUnquotedString

Method parseUnquotedString

pkg/sql/sem/tree/parse_array.go:104–110  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

102}
103
104func (p *parseState) parseUnquotedString() (string, error) {
105 out, err := p.gobbleString(isControlChar)
106 if err != nil {
107 return "", err
108 }
109 return strings.TrimSpace(out), nil
110}
111
112func (p *parseState) parseElement() error {
113 var next string

Callers 1

parseElementMethod · 0.95

Calls 1

gobbleStringMethod · 0.95

Tested by

no test coverage detected