Skip to content

Commit

Permalink
Remove spurious comma from the name of some InnoDB status variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
Davi Arnaut committed Jul 25, 2012
1 parent 19b2514 commit ca173b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/innobase/handler/ha_innodb.cc
Expand Up @@ -623,15 +623,15 @@ static SHOW_VAR innodb_status_variables[]= {
(char*) &export_vars.innodb_buffer_pool_flush_LRU_page_count, SHOW_LONG},
{"buffer_pool_flush_adaptive_pages",
(char*) &export_vars.innodb_buffer_pool_flush_adaptive_pages, SHOW_LONG},
{"buffer_pool_flush_anticipatory_pages,",
{"buffer_pool_flush_anticipatory_pages",
(char*) &export_vars.innodb_buffer_pool_flush_anticipatory_pages, SHOW_LONG},
{"buffer_pool_flush_background_pages",
(char*) &export_vars.innodb_buffer_pool_flush_background_pages, SHOW_LONG},
{"buffer_pool_flush_batch_scanned",
(char*) &export_vars.innodb_buffer_pool_flush_batch_scanned, SHOW_LONG},
{"buffer_pool_flush_max_dirty_pages",
(char*) &export_vars.innodb_buffer_pool_flush_max_dirty_pages, SHOW_LONG},
{"buffer_pool_flush_neighbor_pages,",
{"buffer_pool_flush_neighbor_pages",
(char*) &export_vars.innodb_buffer_pool_flush_neighbor_pages, SHOW_LONG},
{"buffer_pool_flush_sync_page",
(char*) &export_vars.innodb_buffer_pool_flush_sync_page, SHOW_LONG},
Expand Down

0 comments on commit ca173b6

Please sign in to comment.