From ce2d56d7bb9884518ba10c115848cebfc4b2d4f9 Mon Sep 17 00:00:00 2001 From: Michael Butler Date: Mon, 19 Aug 2024 11:59:45 -0400 Subject: [PATCH] backupccl: remove not null flag from SQLInstanceID field in SSP spec This flag is a noop for repeated fields and was producing a warning during proto generation. 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 71d7cc0ec7d7..9167e004bda0 100644 --- a/pkg/sql/execinfrapb/processors_bulk_io.proto +++ b/pkg/sql/execinfrapb/processors_bulk_io.proto @@ -460,7 +460,7 @@ message GenerativeSplitAndScatterSpec { // MaxFileCount is the max number of files in an extending restore span entry. optional int64 max_file_count = 23[(gogoproto.nullable) = false]; // SQLInstanceIDs is a slice of SQL instance IDs available for dist restore. - repeated int32 sql_instance_ids = 24[(gogoproto.nullable) = false, (gogoproto.customname) = "SQLInstanceIDs"]; + repeated int32 sql_instance_ids = 24[(gogoproto.customname) = "SQLInstanceIDs"]; reserved 19; }