summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/sys_vars/t/skip_parallel_replication_basic.test
blob: 3ccac558ea4b056902882f0a6fd7242200863479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--source include/not_embedded.inc

--error ER_INCORRECT_GLOBAL_LOCAL_VAR
SELECT @@global.skip_parallel_replication;

--error ER_LOCAL_VARIABLE
SET GLOBAL skip_parallel_replication= 0;
SELECT @@session.skip_parallel_replication;
SET SESSION skip_parallel_replication= 1;
SELECT @@session.skip_parallel_replication;
SET SESSION skip_parallel_replication= 0;
SELECT @@session.skip_parallel_replication;

# More testing of the actual functionality in rpl.rpl_parallel_* tests.