1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-04 01:23:45 +03:00
Files
mariadb/mysql-test/suite/engines/funcs/t/rpl_empty_master_crash.test
2011-01-05 12:16:07 +05:30

13 lines
225 B
Plaintext

source include/master-slave.inc;
#
# 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