(col string)
| 390 | } |
| 391 | } |
| 392 | func NewColumn(col string) *Column { |
| 393 | return &Column{ |
| 394 | As: col, |
| 395 | SourceField: col, |
| 396 | Expr: &expr.IdentityNode{Text: col}, |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | // The source column name |
| 401 | func (m *ResultColumn) SourceName() string { |
no outgoing calls
no test coverage detected