forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
backupccl: ensure user passes locality aware uris with incremental_lo…
…cation Release note (sql change): This patch ensures the user passes the same number of locality aware URIs for the full backup destination as the incremental_location parameter. I.e. Good: `BACKUP INTO LATEST IN ($1, $2, $3) WITH incremental_location = ($4, $5, $6)` Bad: `BACKUP INTO LATEST IN $4 WITH incremental_location = ($1, $2, $3)` Note that the non locality uris for the full backup don't really affect incremental backup planning -- the patch just adds guardrails to the UX. Further work will ensure users cannot create incremental backup chains with mixed localities (cockroachdb#79135)
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters