Skip to content

Commit

Permalink
Merge #132197
Browse files Browse the repository at this point in the history
132197: multiregionccl: update tests to new `BACKUP`/`RESTORE` syntax r=annrpom a=kev-cao

Several tests still use the old `BACKUP`/`RESTORE` syntax. This patch updates some of the tests to the new `BACKUP INTO` and `RESTORE FROM ... IN ...` syntax.

Epic: none

Release note: None

Co-authored-by: Kevin Cao <[email protected]>
  • Loading branch information
craig[bot] and kev-cao committed Oct 25, 2024
2 parents 07624d1 + aeece71 commit 1783178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/ccl/multiregionccl/region_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -932,8 +932,8 @@ func testRegionAddDropWithConcurrentBackupOps(
}{
{
name: "backup-database",
backupOp: `BACKUP DATABASE db TO 'nodelocal://1/db_backup'`,
restoreOp: `RESTORE DATABASE db FROM 'nodelocal://1/db_backup'`,
backupOp: `BACKUP DATABASE db INTO 'nodelocal://1/db_backup'`,
restoreOp: `RESTORE DATABASE db FROM LATEST IN 'nodelocal://1/db_backup'`,
},
}

Expand Down

0 comments on commit 1783178

Please sign in to comment.