Skip to content

Commit

Permalink
Fix count query
Browse files Browse the repository at this point in the history
  • Loading branch information
marco6 committed Aug 2, 2024
1 parent 15e9310 commit 3e84f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kine/drivers/generic/generic.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ func (d *Generic) CountCurrent(ctx context.Context, prefix string, startKey stri
if startKey != "" {
start = startKey + "\x01"
}
rows, err := d.query(ctx, "count_current", d.CountCurrentSQL, start, end, false)
rows, err := d.query(ctx, "count_current", d.CountCurrentSQL, start, end)
if err != nil {
return 0, 0, err
}
Expand Down

0 comments on commit 3e84f8c

Please sign in to comment.