Skip to content
This repository was archived by the owner on Aug 23, 2023. It is now read-only.

Commit ba7988f

Browse files
committed
mt-store-cat : also display chunk format. why not?
1 parent 960810a commit ba7988f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/mt-store-cat/series.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func getSeries(ctx context.Context, store *cassandra.CassandraStore, table cassa
7878
func printNormal(igens []chunk.IterGen, from, to uint32) {
7979
fmt.Println("number of chunks:", len(igens))
8080
for i, ig := range igens {
81-
fmt.Printf("#### chunk %d (t0:%s, span:%d)\n", i, printTime(ig.T0), ig.Span())
81+
fmt.Printf("#### chunk %d (t0:%s, span:%d, format:%s)\n", i, printTime(ig.T0), ig.Span(), ig.Format())
8282
iter, err := ig.Get()
8383
if err != nil {
8484
fmt.Fprintf(os.Stderr, "chunk %d itergen.Get: %s", i, err)

0 commit comments

Comments
 (0)