(s string)
| 709 | } |
| 710 | |
| 711 | func (b *sqlExprBuilder) writeParenthesizedString(s string) { |
| 712 | _ = b.out.WriteByte('(') |
| 713 | _, _ = b.out.WriteString(s) |
| 714 | _ = b.out.WriteByte(')') |
| 715 | } |
| 716 | |
| 717 | func (b *sqlExprBuilder) sqlForName(name string) (expr string, unnest bool, lookup *lookupMeta, err error) { |
| 718 | // If node is nil, we are evaluating the expression against the underlying table. |
no outgoing calls
no test coverage detected