ParseExprs is a short-hand for parseExprs(sql)
(sql []string)
| 355 | |
| 356 | // ParseExprs is a short-hand for parseExprs(sql) |
| 357 | func ParseExprs(sql []string) (tree.Exprs, error) { |
| 358 | if len(sql) == 0 { |
| 359 | return tree.Exprs{}, nil |
| 360 | } |
| 361 | return parseExprs(sql) |
| 362 | } |
| 363 | |
| 364 | // ParseExpr is a short-hand for parseExprs([]string{sql}) |
| 365 | func ParseExpr(sql string) (tree.Expr, error) { |
nothing calls this directly
no test coverage detected