Skip to content

Commit 98bebad

Browse files
author
Nirbhay Choubey
committed
Fix for a typo.
1 parent fe757e0 commit 98bebad

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mysql-test/suite/wsrep/suite.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ return "No my_print_defaults" unless $epath;
2525
push @::global_suppressions,
2626
(
2727
qr(WSREP: Could not open saved state file for reading: ),
28-
qr(WSREP: option --wsrep-casual-reads is deprecated),
29-
qr(WSREP: --wsrep-casual-reads=ON takes precedence over --wsrep-sync-wait=0),
28+
qr(WSREP: option --wsrep-causal-reads is deprecated),
29+
qr(WSREP: --wsrep-causal-reads=ON takes precedence over --wsrep-sync-wait=0),
3030
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|,
3131
);
3232

sql/mysqld.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8764,10 +8764,10 @@ static int get_options(int *argc_ptr, char ***argv_ptr)
87648764
}
87658765

87668766
if (global_system_variables.wsrep_causal_reads) {
8767-
WSREP_WARN("option --wsrep-casual-reads is deprecated");
8767+
WSREP_WARN("option --wsrep-causal-reads is deprecated");
87688768
if (!(global_system_variables.wsrep_sync_wait &
87698769
WSREP_SYNC_WAIT_BEFORE_READ)) {
8770-
WSREP_WARN("--wsrep-casual-reads=ON takes precedence over --wsrep-sync-wait=%u. "
8770+
WSREP_WARN("--wsrep-causal-reads=ON takes precedence over --wsrep-sync-wait=%u. "
87718771
"WSREP_SYNC_WAIT_BEFORE_READ is on",
87728772
global_system_variables.wsrep_sync_wait);
87738773
global_system_variables.wsrep_sync_wait |= WSREP_SYNC_WAIT_BEFORE_READ;

0 commit comments

Comments
 (0)