Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
129252: backupccl: remove not null flag from SQLInstanceID field in SSP spec r=stevendanna a=msbutler

This flag is a noop for repeated fields and was producing a warning during proto generation.

Epic: none

Release note: none

Co-authored-by: Michael Butler <butler@cockroachlabs.com>
  • Loading branch information
craig[bot] and msbutler committed Aug 19, 2024
2 parents 102449b + ce2d56d commit 79cac09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sql/execinfrapb/processors_bulk_io.proto
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,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;
}

Expand Down

0 comments on commit 79cac09

Please sign in to comment.