mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
8f232cb75f
Improve mysql-test to be more robust. Fix that GRANT doesn't delete SSL options Change innobase_flush_log_at_trx_commit to uint. Don't rotate logs if we read a rotate log entry from the master. Docs/manual.texi: Changelog client/mysqlbinlog.cc: Handle empty binlogfiles gracefully client/mysqltest.c: Do a sleep after 'sync_with_master' Cleaned up sleep() handling. Free all memory on exit configure.in: Fix for Mac OS 10.2 include/my_sys.h: Added my_strdup_with_length() innobase/btr/btr0cur.c: Fixed wrong printf() libmysql/libmysql.c: Added DBUG_PRINT statements. Assume that mysql_...send() functions has correct query length. mysql-test/mysql-test-run.sh: Properly remove log files before starting new tests. mysql-test/r/grant.result: Update for new test results mysql-test/r/innodb.result: Update for new test results mysql-test/r/myisam.result: Update for new test results mysql-test/r/rpl_log.result: Update for new test results mysql-test/r/rpl_rotate_logs.result: Update for new test results mysql-test/r/variables.result: Update for new test results mysql-test/t/grant.test: Test that GRANT doesn't delete SSL options mysql-test/t/myisam.test: Test long key usage mysql-test/t/rpl_log.test: Disable 'show new master' mysql-test/t/rpl_mystery22.test: Longer sleep for more safety. mysql-test/t/rpl_rotate_logs.test: More comments mysys/my_malloc.c: Added my_strdup_with_length() mysys/safemalloc.c: Added my_strdup_with_length() mysys/thr_alarm.c: Fix of alarms for windows. sql/ha_innodb.cc: Change innobase_flush_log_at_trx_commit to uint mysql-test/r/rpl_redirect.result: Updated test results mysql-test/t/rpl_redirect.test: Added more tests to improve code coverage. sql/ha_innodb.h: Change innobase_flush_log_at_trx_commit to uint sql/item_func.cc: Return GLOBAL and SESSION as part of column names sql/log.cc: Only write STOP events when server goes down. sql/log_event.cc: Don't rotate logs if we read a rotate log entry from the master. sql/log_event.h: Change ident_len to uint (more efficient) sql/mysqld.cc: Change innobase_flush_log_at_trx_commit to uint sql/net_serv.cc: More debug output sql/repl_failsafe.cc: More DEBUG Search until we find next position in binary log (and not only =) sql/slave.cc: More DBUG & comments Don't rotate the binary log on master flush logs sql/slave.h: indentation change sql/sql_acl.cc: Test that GRANT doesn't delete SSL options sql/sql_parse.cc: Disable show_new_master. sql/sql_repl.cc: Chamger show_binlog_events() to use my_error() sql/sql_table.cc: Fixed check for too long keys in MyISAM sql/sql_udf.cc: Fix udf handling
92 lines
4.3 KiB
Text
92 lines
4.3 KiB
Text
slave stop;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
slave start;
|
|
slave stop;
|
|
reset master;
|
|
reset slave;
|
|
reset master;
|
|
create table t1(n int not null auto_increment primary key);
|
|
insert into t1 values (NULL);
|
|
drop table t1;
|
|
create table t1 (word char(20) not null);
|
|
load data infile '../../std_data/words.dat' into table t1;
|
|
drop table t1;
|
|
show binlog events;
|
|
Log_name Pos Event_type Server_id Orig_log_pos Info
|
|
master-bin.001 4 Start 1 4 Server ver: VERSION, Binlog ver: 3
|
|
master-bin.001 79 Query 1 79 use test; create table t1(n int not null auto_increment primary key)
|
|
master-bin.001 172 Intvar 1 172 INSERT_ID=1
|
|
master-bin.001 200 Query 1 200 use test; insert into t1 values (NULL)
|
|
master-bin.001 263 Query 1 263 use test; drop table t1
|
|
master-bin.001 311 Query 1 311 use test; create table t1 (word char(20) not null)
|
|
master-bin.001 386 Create_file 1 386 db=test;table=t1;file_id=1;block_len=81
|
|
master-bin.001 556 Exec_load 1 556 ;file_id=1
|
|
master-bin.001 579 Query 1 579 use test; drop table t1
|
|
show binlog events from 79 limit 1;
|
|
Log_name Pos Event_type Server_id Orig_log_pos Info
|
|
master-bin.001 79 Query 1 79 use test; create table t1(n int not null auto_increment primary key)
|
|
show binlog events from 79 limit 2;
|
|
Log_name Pos Event_type Server_id Orig_log_pos Info
|
|
master-bin.001 79 Query 1 79 use test; create table t1(n int not null auto_increment primary key)
|
|
master-bin.001 172 Intvar 1 172 INSERT_ID=1
|
|
show binlog events from 79 limit 2,1;
|
|
Log_name Pos Event_type Server_id Orig_log_pos Info
|
|
master-bin.001 200 Query 1 200 use test; insert into t1 values (NULL)
|
|
flush logs;
|
|
slave start;
|
|
flush logs;
|
|
slave stop;
|
|
create table t1 (n int);
|
|
insert into t1 values (1);
|
|
drop table t1;
|
|
show binlog events;
|
|
Log_name Pos Event_type Server_id Orig_log_pos Info
|
|
master-bin.001 4 Start 1 4 Server ver: VERSION, Binlog ver: 3
|
|
master-bin.001 79 Query 1 79 use test; create table t1(n int not null auto_increment primary key)
|
|
master-bin.001 172 Intvar 1 172 INSERT_ID=1
|
|
master-bin.001 200 Query 1 200 use test; insert into t1 values (NULL)
|
|
master-bin.001 263 Query 1 263 use test; drop table t1
|
|
master-bin.001 311 Query 1 311 use test; create table t1 (word char(20) not null)
|
|
master-bin.001 386 Create_file 1 386 db=test;table=t1;file_id=1;block_len=81
|
|
master-bin.001 556 Exec_load 1 556 ;file_id=1
|
|
master-bin.001 579 Query 1 579 use test; drop table t1
|
|
master-bin.001 627 Rotate 1 627 master-bin.002;pos=4
|
|
show binlog events in 'master-bin.002';
|
|
Log_name Pos Event_type Server_id Orig_log_pos Info
|
|
master-bin.002 4 Query 1 4 use test; create table t1 (n int)
|
|
master-bin.002 62 Query 1 62 use test; insert into t1 values (1)
|
|
master-bin.002 122 Query 1 122 use test; drop table t1
|
|
show master logs;
|
|
Log_name
|
|
master-bin.001
|
|
master-bin.002
|
|
slave start;
|
|
show master logs;
|
|
Log_name
|
|
slave-bin.001
|
|
slave-bin.002
|
|
show binlog events in 'slave-bin.001' from 4;
|
|
Log_name Pos Event_type Server_id Orig_log_pos Info
|
|
slave-bin.001 4 Start 2 4 Server ver: VERSION, Binlog ver: 3
|
|
slave-bin.001 79 Query 1 79 use test; create table t1(n int not null auto_increment primary key)
|
|
slave-bin.001 172 Intvar 1 200 INSERT_ID=1
|
|
slave-bin.001 200 Query 1 200 use test; insert into t1 values (NULL)
|
|
slave-bin.001 263 Query 1 263 use test; drop table t1
|
|
slave-bin.001 311 Query 1 311 use test; create table t1 (word char(20) not null)
|
|
slave-bin.001 386 Create_file 1 386 db=test;table=t1;file_id=1;block_len=81
|
|
slave-bin.001 565 Exec_load 1 556 ;file_id=1
|
|
slave-bin.001 588 Query 1 579 use test; drop table t1
|
|
slave-bin.001 636 Rotate 2 636 slave-bin.002;pos=4
|
|
show binlog events in 'slave-bin.002' from 4;
|
|
Log_name Pos Event_type Server_id Orig_log_pos Info
|
|
slave-bin.002 4 Query 1 4 use test; create table t1 (n int)
|
|
slave-bin.002 62 Query 1 62 use test; insert into t1 values (1)
|
|
slave-bin.002 122 Query 1 122 use test; drop table t1
|
|
show slave status;
|
|
Master_Host Master_User Master_Port Connect_retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter Exec_master_log_pos Relay_log_space
|
|
127.0.0.1 root MASTER_PORT 1 master-bin.002 170 slave-relay-bin.002 957 master-bin.002 Yes Yes 0 0 170 961
|
|
show binlog events in 'slave-bin.005' from 4;
|
|
Error when executing command SHOW BINLOG EVENTS: Could not find target log
|