Below is the list of changes that have just been committed into a local
5.1 repository of jani. When jani does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-04-10 19:07:06+03:00, jani@stripped +1 -0
Patch for displaying questions per second average correctly.
sql/sql_parse.cc@stripped, 2007-04-10 19:07:01+03:00, jani@stripped +9
-4
Patch for displaying questions per second average correctly.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: jani
# Host: ua141d10.elisa.omakaista.fi
# Root: /home/my/bk/mysql-5.1-marvel
--- 1.655/sql/sql_parse.cc 2007-04-10 19:07:19 +03:00
+++ 1.656/sql/sql_parse.cc 2007-04-10 19:07:19 +03:00
@@ -1140,6 +1140,7 @@
STATUS_VAR current_global_status_var;
ulong uptime;
uint length;
+ ulonglong queries_per_second1000;
#ifndef EMBEDDED_LIBRARY
char buff[250];
uint buff_len= sizeof(buff);
@@ -1152,19 +1153,23 @@
statistic_increment(thd->status_var.com_stat[SQLCOM_SHOW_STATUS],
&LOCK_status);
calc_sum_of_all_status(¤t_global_status_var);
- uptime= (ulong) (thd->start_time - server_start_time);
+ if (!(uptime= (ulong) (thd->start_time - server_start_time)))
+ queries_per_second1000= 0;
+ else
+ queries_per_second1000= thd->query_id * LL(1000) / uptime;
+
length= my_snprintf((char*) buff, buff_len - 1,
"Uptime: %lu Threads: %d Questions: %lu "
"Slow queries: %lu Opens: %lu Flush tables: %lu "
- "Open tables: %u Queries per second avg: %.3f",
+ "Open tables: %u Queries per second avg: %u.%u",
uptime,
(int) thread_count, (ulong) thd->query_id,
current_global_status_var.long_query_count,
current_global_status_var.opened_tables,
refresh_version,
cached_open_tables(),
- (uptime ? (ulonglong2double(thd->query_id) /
- (double) uptime) : (double) 0));
+ (uint) (queries_per_second1000 / 1000),
+ (uint) (queries_per_second1000 % 1000));
#ifdef SAFEMALLOC
if (sf_malloc_cur_memory) // Using SAFEMALLOC
{
| Thread |
|---|
| • bk commit into 5.1 tree (jani:1.2572) | jani | 10 Apr |