blob: 9d5a7a173b0fb80270d8dc5e93bda917200366be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
source include/master-slave.inc;
show slave status;
#
# Load table should not succeed on the master as this is not a slave
#
--error 1218
load table t1 from master;
connection slave;
--error 1188
load table t1 from master;
|