summaryrefslogtreecommitdiff
path: root/mysql-test/suite/engines/funcs/t/rpl_empty_master_crash.test
blob: 707d1eca8c2ad888767ea64cee5f48f82c446a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source include/master-slave.inc;

--replace_column 1 # 8 # 9 # 16 # 23 # 33 #
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;

# End of 4.1 tests