()
| 316 | ) |
| 317 | |
| 318 | func NewSqlDialect() expr.DialectWriter { |
| 319 | return expr.NewKeywordDialect(SqlKeywords) |
| 320 | } |
| 321 | func NewProjection() *Projection { |
| 322 | return &Projection{Columns: make(ResultColumns, 0), colNames: make(map[string]struct{})} |
| 323 | } |
no test coverage detected