(scope *selectScope, columns []column)
| 152 | } |
| 153 | |
| 154 | func (t *translator) replaceGroupings(scope *selectScope, columns []column) { |
| 155 | for k, c := range columns { |
| 156 | columns[k].semExpr, _ = replaceGroupings(t, c.semExpr, scope.groupings) |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | type column struct { |
| 161 | name string |
no test coverage detected