1source include/master-slave.inc;
2
3#
4# Load table should not succeed on the master as this is not a slave
5#
6--error 1218
7load table t1 from master;
8connection slave;
9--error 1188
10load table t1 from master;
11
12# End of 4.1 tests
13