mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
ad126d90e0
This includes both code and test cases.
15 lines
289 B
Text
15 lines
289 B
Text
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
|