Skip to content

Commit 6a6932d

Browse files
committed
sql/catalog/bootstrap: fix lint violations
These were detected during the build on a different branch. Epic: none Release note: None
1 parent e3770b8 commit 6a6932d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/sql/catalog/bootstrap/kv_writer.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func (w KVWriter) Insert(
106106
}
107107
for _, kv := range kvs {
108108
if kvTrace {
109-
log.VEventf(ctx, 2, "CPut %s -> %s", kv.Key, kv.Value)
109+
log.VEventf(ctx, 2, "CPut %s -> %s", kv.Key, kv.Value.String())
110110
}
111111
b.CPut(kv.Key, &kv.Value, nil /* expValue */)
112112
}
@@ -131,7 +131,7 @@ func (w KVWriter) Update(
131131
for i, keyVal := range kvs {
132132
expVal := expKvs[i].Value.TagAndDataBytes()
133133
if kvTrace {
134-
log.VEventf(ctx, 2, "CPut %s -> %s, expValue: %s", keyVal.Key, keyVal.Value, expKvs[i].Value)
134+
log.VEventf(ctx, 2, "CPut %s -> %s, expValue: %s", keyVal.Key, keyVal.Value.String(), expKvs[i].Value.String())
135135
}
136136
b.CPut(keyVal.Key, &keyVal.Value, expVal)
137137
}

0 commit comments

Comments
 (0)