()
| 639 | return m.As |
| 640 | } |
| 641 | func (m *Column) String() string { |
| 642 | w := expr.NewDefaultWriter() |
| 643 | m.WriteDialect(w) |
| 644 | return w.String() |
| 645 | } |
| 646 | func (m *Column) WriteDialect(w expr.DialectWriter) { |
| 647 | if m.Star { |
| 648 | io.WriteString(w, "*") |
nothing calls this directly
no test coverage detected