mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
03b0179af9
More DBUG info for replication Better error messages from replication Fixed bug in replication code when connecting to 'localhost' (time was not released properly) Block ALARM signal on Linux for signal handler thread (Fixes problem with running mysqld with --debug) Removed warning when setting an AUTO_INCREMENT field to NULL
11 lines
248 B
Text
11 lines
248 B
Text
source include/master-slave.inc;
|
|
drop table if exists t1;
|
|
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;
|