Skip to content

Commit 9919fad

Browse files
committed
execinfrapb: fix protobuf warning
Fix "is a non-nullable bytes type, nullable=false has no effect" warning in recently added protobuf. Release note: None
1 parent a95d1dd commit 9919fad

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)