()
| 42 | ) |
| 43 | |
| 44 | func init() { |
| 45 | starCols = make(Columns, 1) |
| 46 | starCols[0] = NewColumnFromToken(lex.Token{T: lex.TokenStar, V: "*"}) |
| 47 | } |
| 48 | |
| 49 | type ( |
| 50 | // ColumnsStatement is a statement interface for those statements that |
nothing calls this directly
no test coverage detected