2dfbfce831
(MySQL Bug #61205) OK Brad (maintainer)
17 lines
840 B
Plaintext
17 lines
840 B
Plaintext
$OpenBSD: patch-sql_sql_parse_cc,v 1.9 2011/05/19 08:35:15 dcoppa Exp $
|
|
|
|
Fix floating point string printing in MySQL status output
|
|
(MySQL Bug #61205)
|
|
|
|
--- sql/sql_parse.cc.orig Wed May 18 12:36:24 2011
|
|
+++ sql/sql_parse.cc Wed May 18 12:37:14 2011
|
|
@@ -1558,7 +1558,7 @@ bool dispatch_command(enum enum_server_command command
|
|
length= my_snprintf(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: %u.%u",
|
|
+ "Open tables: %u Queries per second avg: %u.%03u",
|
|
uptime,
|
|
(int) thread_count, (ulong) thd->query_id,
|
|
current_global_status_var.long_query_count,
|