1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

buf0buf.c:

No buffer pool activity in SHOW INNODB STATUS actually meant no page gets
This commit is contained in:
heikki@hundin.mysql.fi
2003-04-21 12:56:54 +03:00
parent 4f77f6a4d8
commit ea0dbedcb1

View File

@ -1904,7 +1904,7 @@ buf_print_io(
/ (buf_pool->n_page_gets - buf_pool->n_page_gets_old)));
} else {
buf += sprintf(buf,
"No buffer pool activity since the last printout\n");
"No buffer pool page gets since the last printout\n");
}
buf_pool->n_page_gets_old = buf_pool->n_page_gets;