Skip to content

Commit

Permalink
backupccl: remove not null flag from SQLInstanceID field in SSP spec
Browse files Browse the repository at this point in the history
This flag is a noop for repeated fields and was producing a warning during
proto generation.

Release note: none
  • Loading branch information
msbutler committed Aug 19, 2024
1 parent 3ec1740 commit ce2d56d
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 @@ -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;
}

Expand Down

0 comments on commit ce2d56d

Please sign in to comment.