Skip to content

Commit

Permalink
Bug#35784192 tablespace is missing for table innodb_undo_002 [postfix]
Browse files Browse the repository at this point in the history
Remove MySQL versions number from MTR test.

Change-Id: I3973435edbbc8bf442846c617ade4b5b824bb8c2
  • Loading branch information
GBuella committed Mar 7, 2024
1 parent 37c96c1 commit 97f4285
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions mysql-test/suite/innodb_undo/r/purge_on_replica.result
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ where file_name like "%undo%";
TABLESPACE_NAME FILE_NAME
innodb_undo_001 ./undo_001
innodb_undo_002 ./undo_002
select name, row_format, server_version from information_schema.innodb_tablespaces
select name, row_format from information_schema.innodb_tablespaces
where name like '%undo%';
name row_format server_version
innodb_undo_001 Undo 8.4.0
innodb_undo_002 Undo 8.4.0
name row_format
innodb_undo_001 Undo
innodb_undo_002 Undo
# 5: undo files undo_001 and undo_002 are expected to exist,
# while files undo_001_trunc.log and undo_002_trunc.log are expected to not exist
undo_001
Expand Down
2 changes: 1 addition & 1 deletion mysql-test/suite/innodb_undo/t/purge_on_replica.test
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ connection slave;

select tablespace_name, file_name from information_schema.files
where file_name like "%undo%";
select name, row_format, server_version from information_schema.innodb_tablespaces
select name, row_format from information_schema.innodb_tablespaces
where name like '%undo%';

let $MYSQLD_DATADIR = `select @@datadir`;
Expand Down

0 comments on commit 97f4285

Please sign in to comment.