mirror of
https://github.com/MariaDB/server.git
synced 2025-04-28 06:45:23 +03:00
16 lines
284 B
Plaintext
16 lines
284 B
Plaintext
source include/master-slave.inc;
|
|
|
|
--replace_column 1 # 8 # 9 # 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
|