mirror of
https://github.com/MariaDB/server.git
synced 2025-05-29 21:42:28 +03:00
Now it properly returns error. Added respective test case. sql/repl_failsafe.cc: fixed bug: load table from master w/ empty master would hang. Now it properly returns error.
8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
source include/master-slave.inc;
|
|
connection master;
|
|
use test;
|
|
drop table if exists t1;
|
|
show slave status;
|
|
--error 1218
|
|
load table t1 from master;
|