mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
76f0b94bb0
sql/sql_insert.cc: CREATE ... IF NOT EXISTS may do nothing, but it is still not a failure. don't forget to my_ok it. ****** CREATE ... IF NOT EXISTS may do nothing, but it is still not a failure. don't forget to my_ok it. sql/sql_table.cc: small cleanup ****** small cleanup
16 lines
465 B
Text
16 lines
465 B
Text
include/rpl_init.inc [topology=1->2->1]
|
|
show variables like 'relay_log%';
|
|
Variable_name Value
|
|
relay_log master-relay-bin
|
|
relay_log_index master-relay-bin.index
|
|
relay_log_info_file relay-log.info
|
|
relay_log_purge ON
|
|
relay_log_recovery OFF
|
|
relay_log_space_limit 0
|
|
CREATE TABLE t1 (a INT KEY) ENGINE= MyISAM;
|
|
INSERT INTO t1 VALUE(1);
|
|
FLUSH LOGS;
|
|
INSERT INTO t1 VALUE(2);
|
|
include/check_slave_is_running.inc
|
|
Relay_Log_File = 'master-relay-bin.000003'
|
|
include/rpl_end.inc
|