mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Merge remote-tracking branch 'refs/remotes/github/10.1' into 10.1
This commit is contained in:
commit
8354c0c4d6
2 changed files with 28 additions and 0 deletions
|
@ -302,6 +302,20 @@ buf_page_set_state(
|
|||
ut_a(state == BUF_BLOCK_NOT_USED);
|
||||
break;
|
||||
case BUF_BLOCK_FILE_PAGE:
|
||||
if (!(state == BUF_BLOCK_NOT_USED
|
||||
|| state == BUF_BLOCK_REMOVE_HASH)) {
|
||||
const char *old_state_name = buf_get_state_name((buf_block_t*)bpage);
|
||||
bpage->state = state;
|
||||
|
||||
fprintf(stderr,
|
||||
"InnoDB: Error: block old state %d (%s) "
|
||||
" new state %d (%s) not correct\n",
|
||||
old_state,
|
||||
old_state_name,
|
||||
state,
|
||||
buf_get_state_name((buf_block_t*)bpage));
|
||||
}
|
||||
|
||||
ut_a(state == BUF_BLOCK_NOT_USED
|
||||
|| state == BUF_BLOCK_REMOVE_HASH);
|
||||
break;
|
||||
|
|
|
@ -305,6 +305,20 @@ buf_page_set_state(
|
|||
ut_a(state == BUF_BLOCK_NOT_USED);
|
||||
break;
|
||||
case BUF_BLOCK_FILE_PAGE:
|
||||
if (!(state == BUF_BLOCK_NOT_USED
|
||||
|| state == BUF_BLOCK_REMOVE_HASH)) {
|
||||
const char *old_state_name = buf_get_state_name((buf_block_t*)bpage);
|
||||
bpage->state = state;
|
||||
|
||||
fprintf(stderr,
|
||||
"InnoDB: Error: block old state %d (%s) "
|
||||
" new state %d (%s) not correct\n",
|
||||
old_state,
|
||||
old_state_name,
|
||||
state,
|
||||
buf_get_state_name((buf_block_t*)bpage));
|
||||
}
|
||||
|
||||
ut_a(state == BUF_BLOCK_NOT_USED
|
||||
|| state == BUF_BLOCK_REMOVE_HASH);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue