From 40505bd27b65f77f650cd884f3cc3574dac5f75e Mon Sep 17 00:00:00 2001 From: Wally Shirey Date: Fri, 13 Feb 2026 10:34:50 -0600 Subject: [PATCH] fix: print rowkey values instead of array indices for samplerowkeys command --- cbt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbt.go b/cbt.go index d38d8b5..11a2d1f 100755 --- a/cbt.go +++ b/cbt.go @@ -2112,7 +2112,7 @@ func doSampleRowKeys(ctx context.Context, args ...string) { if err != nil { log.Fatalf("Could not sample row keys: %v", err) } - for k := range keys { + for _, k := range keys { fmt.Println(k) } }