Skip to content

Commit

Permalink
MDEV-35478 Correction for table->space_id in dict_load_tablespace() w…
Browse files Browse the repository at this point in the history
…as mistakenly applied on an earlier branch

It is `ulint` on 10.6 and `uint32_t` on 10.11+, but I included its
format specifier change in 10.6 (MDEV-35430, merged #3493) rather
than 10.11. This commit reverts that change so 10.11 can reapply it.
  • Loading branch information
ParadoxV5 authored and grooverdan committed Nov 25, 2024
1 parent 26597b9 commit ec58fce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/innobase/dict/dict0load.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2300,8 +2300,8 @@ dict_load_tablespace(
table->file_unreadable = true;

if (!(ignore_err & DICT_ERR_IGNORE_RECOVER_LOCK)) {
sql_print_error("InnoDB: Failed to load tablespace %"
PRIu32 " for table %s",
sql_print_error("InnoDB: Failed to load tablespace "
ULINTPF " for table %s",
table->space_id, table->name.m_name);
}
}
Expand Down

0 comments on commit ec58fce

Please sign in to comment.