summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/galera/t/MW-309.test
blob: 351a508ecec2f6dc21382a73d1249c5cbfc83fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# MW-309 Regression: wsrep_max_ws_rows limit also applies to certain SELECT queries
#

--source include/galera_cluster.inc
--source include/have_innodb.inc

CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1);
INSERT INTO t1 SELECT * FROM t1;
INSERT INTO t1 SELECT * FROM t1;
INSERT INTO t1 SELECT * FROM t1;
INSERT INTO t1 SELECT * FROM t1;
INSERT INTO t1 SELECT * FROM t1;

SET GLOBAL wsrep_max_ws_rows = 2;

SET AUTOCOMMIT=OFF;
START TRANSACTION;
SELECT * FROM t1 GROUP BY f1;
SELECT * FROM t1 GROUP BY f1;

--error 0
SELECT * FROM t1 GROUP BY f1;

--disable_result_log
--error 0
SHOW STATUS LIKE '%wsrep%';
--enable_result_log

SET GLOBAL wsrep_max_ws_rows = 0;
DROP TABLE t1;