From 3386c7231ac095a73a3632c4ef2a07f686e929cc Mon Sep 17 00:00:00 2001 From: Rui Hu Date: Wed, 25 Jan 2023 14:04:53 +0000 Subject: [PATCH] sql/execinfrapb: remove no-effect nullable from GenerativeSplitAndScatterSpec Remove no-effect nullable from GenerativeSplitAndScatterSpec that was causing warning messages during build. Release note: None --- pkg/sql/execinfrapb/processors_bulk_io.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sql/execinfrapb/processors_bulk_io.proto b/pkg/sql/execinfrapb/processors_bulk_io.proto index 0eb6c97c0fd4..2a340b433448 100644 --- a/pkg/sql/execinfrapb/processors_bulk_io.proto +++ b/pkg/sql/execinfrapb/processors_bulk_io.proto @@ -407,7 +407,7 @@ message GenerativeSplitAndScatterSpec { repeated roachpb.Span spans = 10 [(gogoproto.nullable) = false]; repeated jobs.jobspb.RestoreDetails.BackupLocalityInfo backup_locality_info = 11 [(gogoproto.nullable) = false]; // HighWater is the high watermark of the previous run of restore. - optional bytes high_water = 12 [(gogoproto.nullable) = false]; + optional bytes high_water = 12; // User who initiated the restore. optional string user_proto = 13 [(gogoproto.nullable) = false, (gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/security/username.SQLUsernameProto"]; // ChunkSize is the number of import spans per chunk.