mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
mysqld.cc:
Reorder out-of-order status variables. sql/mysqld.cc: Reorder out-of-order status variables.
This commit is contained in:
parent
996eb5df5d
commit
52e3c0a2b5
1 changed files with 5 additions and 5 deletions
|
@ -5498,11 +5498,11 @@ struct show_var_st status_vars[]= {
|
|||
{"Com_show_warnings", (char*) (com_stat+(uint) SQLCOM_SHOW_WARNS),SHOW_LONG},
|
||||
{"Com_slave_start", (char*) (com_stat+(uint) SQLCOM_SLAVE_START),SHOW_LONG},
|
||||
{"Com_slave_stop", (char*) (com_stat+(uint) SQLCOM_SLAVE_STOP),SHOW_LONG},
|
||||
{"Com_stmt_prepare", (char*) &com_stmt_prepare, SHOW_LONG},
|
||||
{"Com_stmt_execute", (char*) &com_stmt_execute, SHOW_LONG},
|
||||
{"Com_stmt_send_long_data", (char*) &com_stmt_send_long_data, SHOW_LONG},
|
||||
{"Com_stmt_reset", (char*) &com_stmt_reset, SHOW_LONG},
|
||||
{"Com_stmt_close", (char*) &com_stmt_close, SHOW_LONG},
|
||||
{"Com_stmt_execute", (char*) &com_stmt_execute, SHOW_LONG},
|
||||
{"Com_stmt_prepare", (char*) &com_stmt_prepare, SHOW_LONG},
|
||||
{"Com_stmt_reset", (char*) &com_stmt_reset, SHOW_LONG},
|
||||
{"Com_stmt_send_long_data", (char*) &com_stmt_send_long_data, SHOW_LONG},
|
||||
{"Com_truncate", (char*) (com_stat+(uint) SQLCOM_TRUNCATE),SHOW_LONG},
|
||||
{"Com_unlock_tables", (char*) (com_stat+(uint) SQLCOM_UNLOCK_TABLES),SHOW_LONG},
|
||||
{"Com_update", (char*) (com_stat+(uint) SQLCOM_UPDATE),SHOW_LONG},
|
||||
|
@ -5568,8 +5568,8 @@ struct show_var_st status_vars[]= {
|
|||
{"Select_range_check", (char*) &select_range_check_count, SHOW_LONG},
|
||||
{"Select_scan", (char*) &select_scan_count, SHOW_LONG},
|
||||
{"Slave_open_temp_tables", (char*) &slave_open_temp_tables, SHOW_LONG},
|
||||
{"Slave_running", (char*) 0, SHOW_SLAVE_RUNNING},
|
||||
{"Slave_retried_transactions",(char*) 0, SHOW_SLAVE_RETRIED_TRANS},
|
||||
{"Slave_running", (char*) 0, SHOW_SLAVE_RUNNING},
|
||||
{"Slow_launch_threads", (char*) &slow_launch_threads, SHOW_LONG},
|
||||
{"Slow_queries", (char*) &long_query_count, SHOW_LONG},
|
||||
{"Sort_merge_passes", (char*) &filesort_merge_passes, SHOW_LONG},
|
||||
|
|
Loading…
Add table
Reference in a new issue