Skip to content

Commit a027188

Browse files
craig[bot]yuzefovich
andcommitted
Merge #158454
158454: execinfrapb: fix protobuf warning r=yuzefovich a=yuzefovich Fix "is a non-nullable bytes type, nullable=false has no effect" warning in recently added protobuf. Epic: None Release note: None Co-authored-by: Yahor Yuzefovich <yahor@cockroachlabs.com>
2 parents a95d1dd + 9919fad commit a027188

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/sql/execinfrapb/processors_bulk_io.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,9 +591,9 @@ message BulkMergeSpec {
591591
message SST {
592592
optional string uri = 1 [(gogoproto.nullable) = false, (gogoproto.customname) = "URI"];
593593
// start_key is the first key in the SST.
594-
optional bytes start_key = 2 [(gogoproto.nullable) = false, (gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/roachpb.Key"];
594+
optional bytes start_key = 2 [(gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/roachpb.Key"];
595595
// end_key is the last key in the SST.
596-
optional bytes end_key = 3 [(gogoproto.nullable) = false, (gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/roachpb.Key"];
596+
optional bytes end_key = 3 [(gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/roachpb.Key"];
597597
}
598598

599599
// ssts is the list of input SSTs to merge.

0 commit comments

Comments
 (0)