-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix --big-test MTR test failures and add more suites to the default
suite list, implementing https://blueprints.launchpad.net/percona-server/+spec/mtr-big-test-more-suites. The --big-test failures fixed (bug 1419827) are information_schema-big, and variables-big, were a simple re-record was a sufficient fix. The extra suites added to the default run are funcs_2,jp,stress,engines/iuds,engines/funcs.
- Loading branch information
1 parent
a2213fb
commit 30716f0
Showing
3 changed files
with
31 additions
and
11 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
SET @def_var= @@session.transaction_prealloc_size; | ||
SET SESSION transaction_prealloc_size=1024*1024*1024*1; | ||
SHOW PROCESSLIST; | ||
Id User Host db Command Time State Info | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST | ||
Id User Host db Command Time State Info Rows_sent Rows_examined | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST 0 0 | ||
SET SESSION transaction_prealloc_size=1024*1024*1024*2; | ||
SHOW PROCESSLIST; | ||
Id User Host db Command Time State Info | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST | ||
Id User Host db Command Time State Info Rows_sent Rows_examined | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST 0 0 | ||
SET SESSION transaction_prealloc_size=1024*1024*1024*3; | ||
SHOW PROCESSLIST; | ||
Id User Host db Command Time State Info | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST | ||
Id User Host db Command Time State Info Rows_sent Rows_examined | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST 0 0 | ||
SET SESSION transaction_prealloc_size=1024*1024*1024*4; | ||
SHOW PROCESSLIST; | ||
Id User Host db Command Time State Info | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST | ||
Id User Host db Command Time State Info Rows_sent Rows_examined | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST 0 0 | ||
SET SESSION transaction_prealloc_size=1024*1024*1024*5; | ||
SHOW PROCESSLIST; | ||
Id User Host db Command Time State Info | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST | ||
Id User Host db Command Time State Info Rows_sent Rows_examined | ||
<Id> root <Host> test Query <Time> <State> SHOW PROCESSLIST 0 0 | ||
SET @@session.transaction_prealloc_size= @def_var; |