()
| 319 | return expr.NewKeywordDialect(SqlKeywords) |
| 320 | } |
| 321 | func NewProjection() *Projection { |
| 322 | return &Projection{Columns: make(ResultColumns, 0), colNames: make(map[string]struct{})} |
| 323 | } |
| 324 | func NewResultColumn(as string, ordinal int, col *Column, valtype value.ValueType) *ResultColumn { |
| 325 | rc := ResultColumn{Name: as, As: as, ColPos: ordinal, Col: col, Type: valtype} |
| 326 | if col != nil { |
no outgoing calls
no test coverage detected