mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Back-port Master_info::using_parallel() to 10.0.
This has no functional changes, but it helps avoid merge problems from 10.0 to 10.1. In 10.0, code that checks for parallel replication uses opt_slave_parallel_threads > 0, but this check needs to be mi->using_parallel() in 10.1. By using the same check in 10.0 (with unchanged semantics), merge problems to 10.1 are avoided.
This commit is contained in:
@ -75,6 +75,10 @@ class Master_info : public Slave_reporting_capability
|
||||
return connection_name.str == 0;
|
||||
}
|
||||
static const char *using_gtid_astext(enum enum_using_gtid arg);
|
||||
bool using_parallel()
|
||||
{
|
||||
return opt_slave_parallel_threads > 0;
|
||||
}
|
||||
|
||||
/* the variables below are needed because we can change masters on the fly */
|
||||
char master_log_name[FN_REFLEN+6]; /* Room for multi-*/
|
||||
|
Reference in New Issue
Block a user