Skip to content

Commit

Permalink
backup-restore: fix flake in datadriven test
Browse files Browse the repository at this point in the history
Fixes: cockroachdb#92077

Release note: None
  • Loading branch information
adityamaru committed Nov 17, 2022
1 parent 3830d63 commit ccd874d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pkg/ccl/backupccl/testdata/backup-restore/encrypted-backups
Original file line number Diff line number Diff line change
Expand Up @@ -170,21 +170,21 @@ RESTORE DATABASE d FROM LATEST IN 'nodelocal://1/full3' WITH new_db_name='d4', k

query-sql
USE d2;
SELECT * FROM [SHOW TABLES] ORDER BY table_name;
SELECT table_name FROM [SHOW TABLES] ORDER BY table_name;
----
public baz table root <nil> <nil>
public foo table root <nil> <nil>
baz
foo

query-sql
USE d3;
SELECT * FROM [SHOW TABLES] ORDER BY table_name;
SELECT table_name FROM [SHOW TABLES] ORDER BY table_name;
----
public baz table root <nil> <nil>
public foo table root <nil> <nil>
baz
foo

query-sql
USE d4;
SELECT * FROM [SHOW TABLES] ORDER BY table_name;
SELECT table_name FROM [SHOW TABLES] ORDER BY table_name;
----
public baz table root <nil> <nil>
public foo table root <nil> <nil>
baz
foo

0 comments on commit ccd874d

Please sign in to comment.