ParseExprs is a short-hand for parseExprs(sql)
(sql []string)
| 279 | |
| 280 | // ParseExprs is a short-hand for parseExprs(sql) |
| 281 | func 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}) |
| 289 | func ParseExpr(sql string) (tree.Expr, error) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…