Skip to content

Commit

Permalink
[release-20.0] VDiff CLI: Fix VDiff show bug (#16177) (#16200)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitess-bot[bot] authored Jun 16, 2024
1 parent 25f6f72 commit b3b64a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/cmd/vtctldclient/command/vreplication/vdiff/vdiff.go
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,6 @@ func getStructFieldNames(s any) []string {
}

func buildListings(listings []*listing) string {
var values []string
var lines [][]string
var result string

Expand All @@ -474,6 +473,7 @@ func buildListings(listings []*listing) string {
// The header is the first row.
lines = append(lines, fields)
for _, listing := range listings {
var values []string
v := reflect.ValueOf(*listing)
for _, field := range fields {
values = append(values, v.FieldByName(field).String())
Expand Down

0 comments on commit b3b64a1

Please sign in to comment.