MCPcopy
hub / github.com/lindb/lindb / OrderByRow

Struct OrderByRow

aggregation/order_by.go:36–42  ·  view source on GitHub ↗

OrderByRow represents row for order by, implements Row interface.

Source from the content-addressed store, hash-verified

34
35// OrderByRow represents row for order by, implements Row interface.
36type 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.
45func NewOrderByRow(tags string, fields map[string]*collections.FloatArray) Row {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected