| 1175 | var _ parquetquery.GroupPredicate = (*distinctValueCollector)(nil) |
| 1176 | |
| 1177 | type distinctValueCollector struct { |
| 1178 | mapToStatic func(entry) traceql.Static |
| 1179 | sentVals map[traceql.StaticMapKey]struct{} |
| 1180 | name string |
| 1181 | } |
| 1182 | |
| 1183 | func newDistinctValueCollector(mapToStatic func(entry) traceql.Static, name string) *distinctValueCollector { |
| 1184 | return &distinctValueCollector{ |
nothing calls this directly
no outgoing calls
no test coverage detected