Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
932eaf31
Commit
932eaf31
authored
Aug 25, 2014
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: sort struct members by size
parent
3f7cc414
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sql/structs.h
sql/structs.h
+4
-4
No files found.
sql/structs.h
View file @
932eaf31
...
...
@@ -287,18 +287,18 @@ typedef struct st_user_stats
uint
total_connections
;
uint
concurrent_connections
;
time_t
connected_time
;
// in seconds
double
busy_time
;
// in seconds
double
cpu_time
;
// in seconds
ha_rows
rows_read
,
rows_sent
;
ha_rows
rows_updated
,
rows_deleted
,
rows_inserted
;
ulonglong
bytes_received
;
ulonglong
bytes_sent
;
ulonglong
binlog_bytes_written
;
ha_rows
rows_read
,
rows_sent
;
ha_rows
rows_updated
,
rows_deleted
,
rows_inserted
;
ulonglong
select_commands
,
update_commands
,
other_commands
;
ulonglong
commit_trans
,
rollback_trans
;
ulonglong
denied_connections
,
lost_connections
,
max_statement_time_exceeded
;
ulonglong
access_denied_errors
;
ulonglong
empty_queries
;
double
busy_time
;
// in seconds
double
cpu_time
;
// in seconds
}
USER_STATS
;
/* Lookup function for hash tables with USER_STATS entries */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment