Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Test cleanups.
- Loading branch information
Jan Lindström
committed
Mar 12, 2019
1 parent
a62e9a8
commit 3b2a568
Showing
9 changed files
with
79 additions
and
54 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,14 @@ | ||
| call mtr.add_suppression("WSREP: Last Applied Action message in non-primary configuration from member .*"); | ||
| SET GLOBAL wsrep_provider_options = 'pc.ignore_sb=true'; | ||
| CREATE TABLE ten (f1 INTEGER); | ||
| INSERT INTO ten VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10); | ||
| CREATE TABLE ten (f1 INTEGER) ENGINE=InnoDB; | ||
| INSERT INTO ten VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10),(11); | ||
| CREATE TABLE t1 (f1 VARCHAR(128)) ENGINE=InnoDB; | ||
| Killing server ... | ||
| INSERT INTO t1 SELECT REPEAT('a', 128) FROM ten AS a1, ten AS a2, ten AS a3, ten AS a4, ten AS a5, ten AS a6; | ||
| SELECT COUNT(*) = 1000000 FROM t1; | ||
| COUNT(*) = 1000000 | ||
| 1 | ||
| SELECT VARIABLE_VALUE = 2 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; | ||
| VARIABLE_VALUE = 2 | ||
| 1 | ||
| SELECT COUNT(*) FROM t1; | ||
| COUNT(*) | ||
| 1771561 | ||
| SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size'; | ||
| VARIABLE_VALUE | ||
| 2 | ||
| DROP TABLE t1; | ||
| DROP TABLE ten; |
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
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
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