Skip to content

Commit

Permalink
[release-18.0] VDiff CLI: Fix VDiff show bug (#16177) (#16197)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitess-bot[bot] committed Jun 16, 2024
1 parent d406270 commit 6e1a252
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 @@ -455,7 +455,6 @@ func getStructFieldNames(s any) []string {
}

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

Expand All @@ -467,6 +466,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 6e1a252

Please sign in to comment.