Commit de0f77a2 authored by Jan Lindström's avatar Jan Lindström

MDEV-11106: Improve error messages when importing tablespaces

Add error message when used index_id in index page is not found
from configuration file.
parent 84ce6819
......@@ -1896,6 +1896,15 @@ PageConverter::update_index_page(
row_index_t* index = find_index(id);
if (index == 0) {
ib_logf(IB_LOG_LEVEL_ERROR,
"Page for tablespace %lu is "
" index page with id %lu but that"
" index is not found from configuration file."
" Current index name %s and id %lu.",
m_space,
id,
m_index->m_name,
m_index->m_id);
m_index = 0;
return(DB_CORRUPTION);
}
......
......@@ -1899,6 +1899,15 @@ PageConverter::update_index_page(
row_index_t* index = find_index(id);
if (index == 0) {
ib_logf(IB_LOG_LEVEL_ERROR,
"Page for tablespace %lu is "
" index page with id %lu but that"
" index is not found from configuration file."
" Current index name %s and id %lu.",
m_space,
id,
m_index->m_name,
m_index->m_id);
m_index = 0;
return(DB_CORRUPTION);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment