1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Bug#28149 overflow in some "SHOW STATUS"-variables

changed bytes_received, bytes_sent status variables to longlong
This commit is contained in:
gluh@mysql.com/eagle.(none)
2007-06-09 17:46:09 +05:00
parent 47ecabe915
commit 068f1f7dbf
4 changed files with 8 additions and 5 deletions

View File

@@ -606,8 +606,8 @@ struct system_variables
typedef struct system_status_var
{
ulong bytes_received;
ulong bytes_sent;
ulonglong bytes_received;
ulonglong bytes_sent;
ulong com_other;
ulong com_stat[(uint) SQLCOM_END];
ulong created_tmp_disk_tables;