Skip to content

Commit 36a65c0

Browse files
author
Pedro Figueiredo
committed
Merge branch 'mysql-5.7' into mysql-8.0
2 parents 95c26c3 + 261d325 commit 36a65c0

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

mysql-test/r/mysqld--help-win.result

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,6 +1138,15 @@ The following options may be given as the first argument:
11381138
replicate-wild-ignore-table=foo%.bar% will not do updates
11391139
to tables in databases that start with foo and whose
11401140
table names start with bar.
1141+
--replication-optimize-for-static-plugin-config
1142+
Optional flag that blocks plugin install/uninstall and
1143+
allows skipping the acquisition of the lock to read from
1144+
the plugin list and the usage of read-optimized
1145+
spin-locks. Use only when plugin hook callback needs
1146+
optimization (a lot of semi-sync slaves, for instance).
1147+
--replication-sender-observe-commit-only
1148+
Optional flag that allows for only calling back observer
1149+
hooks at commit.
11411150
--report-host=name Hostname or IP of the slave to be reported to the master
11421151
during slave registration. Will appear in the output of
11431152
SHOW SLAVE HOSTS. Leave unset if you do not want the
@@ -1763,6 +1772,8 @@ relay-log-purge TRUE
17631772
relay-log-recovery FALSE
17641773
relay-log-space-limit 0
17651774
replicate-same-server-id FALSE
1775+
replication-optimize-for-static-plugin-config FALSE
1776+
replication-sender-observe-commit-only FALSE
17661777
report-host (No default value)
17671778
report-password (No default value)
17681779
report-port 0

mysql-test/t/all_persisted_variables.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ call mtr.add_suppression("\\[Warning\\] .*MY-\\d+.* Changing innodb_extend_and_i
4141
call mtr.add_suppression("Failed to initialize TLS for channel: mysql_main");
4242

4343
let $total_global_vars=`SELECT COUNT(*) FROM performance_schema.global_variables where variable_name NOT LIKE 'ndb_%'`;
44-
let $total_persistent_vars=410;
44+
let $total_persistent_vars=412;
4545

4646
--echo ***************************************************************
4747
--echo * 0. Verify that variables present in performance_schema.global

0 commit comments

Comments
 (0)