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

Function ParseExprs

pkg/sql/parser/parse.go:281–286  ·  view source on GitHub ↗

ParseExprs is a short-hand for parseExprs(sql)

(sql []string)

Source from the content-addressed store, hash-verified

279
280// ParseExprs is a short-hand for parseExprs(sql)
281func ParseExprs(sql []string) (tree.Exprs, error) {
282 if len(sql) == 0 {
283 return tree.Exprs{}, nil
284 }
285 return parseExprs(sql)
286}
287
288// ParseExpr is a short-hand for parseExprs([]string{sql})
289func ParseExpr(sql string) (tree.Expr, error) {

Callers

nothing calls this directly

Calls 1

parseExprsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…