mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +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>
26 lines
783 B
PHP
26 lines
783 B
PHP
# ==== Purpose ====
|
|
#
|
|
# This file does the same as the built-in command sync_with_master,
|
|
# but can be configured to use a custom timeout. This has the benefit
|
|
# that it accepts the same $slave_timeout and $master_connection
|
|
# parameters as wait_for_slave_param.inc
|
|
#
|
|
#
|
|
# ==== Usage ====
|
|
#
|
|
# --connection master
|
|
# --source include/save_master_pos.inc
|
|
# --connection slave
|
|
# --source include/sync_with_master.inc
|
|
#
|
|
# Parameters to this macro are $slave_timeout and
|
|
# $master_connection. See wait_for_slave_param.inc for
|
|
# descriptions.
|
|
|
|
--let $slave_param= Relay_Master_Log_File
|
|
--let $slave_param_value= $_master_file
|
|
--source include/wait_for_slave_param.inc
|
|
|
|
--let $slave_param= Exec_Master_Log_Pos
|
|
--let $slave_param_value= $_master_pos
|
|
--source include/wait_for_slave_param.inc
|