mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
19abe79fd1
Initial merge of delayed replication from MySQL git. The code from the initial push into MySQL is merged, and the associated test case passes. A number of tasks are still pending: 1. Check full test suite run for any regressions or .result file updates. 2. Extend the feature to also work for parallel replication. 3. There are some todo-comments about future refactoring left from MySQL, these should be located and merged on top. 4. There are some later related MySQL commits, these should be checked and merged. These include: e134b9362ba0b750d6ac1b444780019622d14aa5 b38f0f7857c073edfcc0a64675b7f7ede04be00f fd2b210383358fe7697f201e19ac9779879ba72a afc397376ec50e96b2918ee64e48baf4dda0d37d 5. The testcase from MySQL relies heavily on sleep and timing for testing, and seems likely to sporadically fail on heavily loaded test servers in buildbot or distro build farms. Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
83 lines
2.7 KiB
Text
83 lines
2.7 KiB
Text
# ==== Purpose ====
|
|
#
|
|
# This test is executed twice for each test case. Before every
|
|
# testcase it is run with mysqltest in record mode and will thus
|
|
# produce an output file that can be compared to output from after the
|
|
# tescase. In that way, it is possible to check that a testcase does
|
|
# not have any unwanted side affects.
|
|
|
|
--disable_query_log
|
|
|
|
# We want to ensure all slave configuration is restored. But SHOW
|
|
# SLAVE STATUS returns nothing for servers not configured as slaves,
|
|
# and (after BUG#28796 was fixed) there is no way to de-configure a
|
|
# slave. Hence, it's impossible to clean up the replication state at
|
|
# the end. But we want to check that the slave is stopped, there is
|
|
# no error, and a few other invariants. So we issue SHOW SLAVE
|
|
# STATUS, and if it returns no rows we fake the result.
|
|
--let $tmp= query_get_value(SHOW SLAVE STATUS, Slave_IO_Running, 1)
|
|
--let $tmp= `SELECT '$tmp' = 'No such row'`
|
|
if ($tmp)
|
|
{
|
|
# Note: after WL#5177, fields 13-18 shall not be filtered-out.
|
|
--echo Slave_IO_State
|
|
--echo Master_Host 127.0.0.1
|
|
--echo Master_User root
|
|
--echo Master_Port #
|
|
--echo Connect_Retry #
|
|
--echo Master_Log_File #
|
|
--echo Read_Master_Log_Pos #
|
|
--echo Relay_Log_File #
|
|
--echo Relay_Log_Pos #
|
|
--echo Relay_Master_Log_File #
|
|
--echo Slave_IO_Running No
|
|
--echo Slave_SQL_Running No
|
|
--echo Replicate_Do_DB #
|
|
--echo Replicate_Ignore_DB #
|
|
--echo Replicate_Do_Table #
|
|
--echo Replicate_Ignore_Table #
|
|
--echo Replicate_Wild_Do_Table #
|
|
--echo Replicate_Wild_Ignore_Table #
|
|
--echo Last_Errno 0
|
|
--echo Last_Error
|
|
--echo Skip_Counter 0
|
|
--echo Exec_Master_Log_Pos #
|
|
--echo Relay_Log_Space #
|
|
--echo Until_Condition #
|
|
--echo Until_Log_File #
|
|
--echo Until_Log_Pos #
|
|
--echo Master_SSL_Allowed No
|
|
--echo Master_SSL_CA_File
|
|
--echo Master_SSL_CA_Path
|
|
--echo Master_SSL_Cert
|
|
--echo Master_SSL_Cipher
|
|
--echo Master_SSL_Key
|
|
--echo Seconds_Behind_Master NULL
|
|
--echo Master_SSL_Verify_Server_Cert No
|
|
--echo Last_IO_Errno 0
|
|
--echo Last_IO_Error
|
|
--echo Last_SQL_Errno 0
|
|
--echo Last_SQL_Error
|
|
--echo Replicate_Ignore_Server_Ids
|
|
--echo Master_Server_Id #
|
|
--echo Master_SSL_Crl #
|
|
--echo Master_SSL_Crlpath #
|
|
--echo Using_Gtid No
|
|
--echo Gtid_IO_Pos #
|
|
--echo Replicate_Do_Domain_Ids
|
|
--echo Replicate_Ignore_Domain_Ids
|
|
--echo Parallel_Mode conservative
|
|
--echo SQL_Delay 0
|
|
--echo SQL_Remaining_Delay NULL
|
|
--echo Slave_SQL_Running_State
|
|
}
|
|
if (!$tmp) {
|
|
# Note: after WL#5177, fields 13-18 shall not be filtered-out.
|
|
--replace_column 4 # 5 # 6 # 7 # 8 # 9 # 10 # 13 # 14 # 15 # 16 # 17 # 18 # 22 # 23 # 24 # 25 # 26 # 40 # 41 # 42 # 44 #
|
|
query_vertical
|
|
SHOW SLAVE STATUS;
|
|
}
|
|
|
|
call mtr.check_testcase();
|
|
--enable_query_log
|
|
|