Normalize sorts and uniques the datum tuple.
(ctx *EvalContext)
| 3170 | |
| 3171 | // Normalize sorts and uniques the datum tuple. |
| 3172 | func (d *DTuple) Normalize(ctx *EvalContext) { |
| 3173 | d.sort(ctx) |
| 3174 | d.makeUnique(ctx) |
| 3175 | } |
| 3176 | |
| 3177 | func (d *DTuple) sort(ctx *EvalContext) { |
| 3178 | if !d.sorted { |
no test coverage detected