OrderByRow represents row for order by, implements Row interface.
| 34 | |
| 35 | // OrderByRow represents row for order by, implements Row interface. |
| 36 | type OrderByRow struct { |
| 37 | tags string |
| 38 | fields map[string]*collections.FloatArray |
| 39 | |
| 40 | // cache order by point value |
| 41 | points map[string]*aggResult |
| 42 | } |
| 43 | |
| 44 | // NewOrderByRow creates a OrderByRow instance. |
| 45 | func NewOrderByRow(tags string, fields map[string]*collections.FloatArray) Row { |
nothing calls this directly
no outgoing calls
no test coverage detected