String implements the fmt.Stringer.
()
| 1530 | |
| 1531 | // String implements the fmt.Stringer. |
| 1532 | func (f *Func) String() string { |
| 1533 | for _, fn := range f.fns { |
| 1534 | fn(&f.Builder) |
| 1535 | } |
| 1536 | return f.Builder.String() |
| 1537 | } |
| 1538 | |
| 1539 | // As suffixed the given column with an alias (`a` AS `b`). |
| 1540 | func As(ident string, as string) string { |
no outgoing calls