| 1220 | var _ parquetquery.GroupPredicate = (*distinctValueCollector)(nil) |
| 1221 | |
| 1222 | type distinctValueCollector struct { |
| 1223 | mapToStatic func(entry) traceql.Static |
| 1224 | sentVals map[traceql.StaticMapKey]struct{} |
| 1225 | name string |
| 1226 | } |
| 1227 | |
| 1228 | func newDistinctValueCollector(mapToStatic func(entry) traceql.Static, name string) *distinctValueCollector { |
| 1229 | return &distinctValueCollector{ |
nothing calls this directly
no outgoing calls
no test coverage detected