()
| 1233 | } |
| 1234 | |
| 1235 | func (m *SqlSelect) UnAliasedColumns() map[string]*Column { |
| 1236 | cols := make(map[string]*Column, len(m.Columns)) |
| 1237 | for _, col := range m.Columns { |
| 1238 | _, right, _ := col.LeftRight() |
| 1239 | cols[right] = col |
| 1240 | } |
| 1241 | return cols |
| 1242 | } |
| 1243 | func (m *SqlSelect) AliasedColumns() map[string]*Column { |
| 1244 | cols := make(map[string]*Column, len(m.Columns)) |
| 1245 | for _, col := range m.Columns { |