Skip to content

Commit

Permalink
Fix vector name
Browse files Browse the repository at this point in the history
  • Loading branch information
jeschkies committed Oct 2, 2024
1 parent 9ac2030 commit acb7754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/logql/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ func (q *query) evalSample(ctx context.Context, expr syntax.SampleExpr) (promql_
return JoinQuantileSketchVector(next, vec, stepEvaluator, q.params)
case CountMinSketchVector:
return JoinCountMinSketchVector(next, vec, stepEvaluator, q.params)
case LimitedLabelVector:
case HeapCountMinSketchVector:
return JoinCountMinSketchVector(next, vec.CountMinSketchVector, stepEvaluator, q.params)
default:
return nil, fmt.Errorf("unsupported result type: %T", r)
Expand Down

0 comments on commit acb7754

Please sign in to comment.