diff options
author | unknown <heikki@hundin.mysql.fi> | 2003-04-21 12:56:54 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2003-04-21 12:56:54 +0300 |
commit | c798445608f7a27d3bce7aea440bb842bac65bb4 (patch) | |
tree | cc50531d4cdf10a7498d3a28f7f8a716e31f93e5 /innobase/buf | |
parent | 61e368438ab5afe1d88ee718915437c038c5490e (diff) | |
download | mariadb-git-c798445608f7a27d3bce7aea440bb842bac65bb4.tar.gz |
buf0buf.c:
No buffer pool activity in SHOW INNODB STATUS actually meant no page gets
innobase/buf/buf0buf.c:
No buffer pool activity in SHOW INNODB STATUS actually meant no page gets
Diffstat (limited to 'innobase/buf')
-rw-r--r-- | innobase/buf/buf0buf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/buf/buf0buf.c b/innobase/buf/buf0buf.c index 82a2d19695a..42799da9d7c 100644 --- a/innobase/buf/buf0buf.c +++ b/innobase/buf/buf0buf.c @@ -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; |