This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- (run this all at once) | |
set @binlog_commits_1 = (select variable_value from information_schema.global_status where variable_Name = 'Binlog_commits'); | |
set @binlog_group_commits_1 = (select variable_value from information_schema.global_status where variable_Name = 'Binlog_group_commits'); | |
set @trigger_count_1 = (select variable_value from information_schema.global_status where variable_Name = 'Binlog_group_commit_trigger_count'); | |
set @trigger_timeout_1 = (select variable_value from information_schema.global_status where variable_Name = 'Binlog_group_commit_trigger_timeout'); | |
select sleep(60); | |
set @binlog_commits_2 = (select variable_value from information_schema.global_status where variable_Name = 'Binlog_commits'); | |
set @binlog_group_commits_2 = (select variable_value from information_schema.global_status where variable_Name = 'Binlog_group_commits'); | |
set @trigger_count_2 = (select variable_value from information_schema.global_status where variable_Name = 'Binlog_group_commit_trigger_count'); | |
set @trigger_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
/* Set Font Size In Folder Pane */ | |
#folderTree >treechildren::-moz-tree-cell-text { | |
/*font-family: Lucida Sans !important;*/ | |
font-size: 12pt !important; } | |
/* Set Font Size In Thread Pane */ |