Skip to content
Permalink
Browse files
Fix the grammar of an error message
  • Loading branch information
dr-m committed Dec 13, 2017
1 parent 46305b0 commit 2fe990d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -3483,7 +3483,7 @@ innobase_init(
if (innodb_lock_schedule_algorithm == INNODB_LOCK_SCHEDULE_ALGORITHM_VATS
&& global_system_variables.wsrep_on) {
/* Do not allow InnoDB startup with VATS and Galera */
sql_print_error("In Galera environment Variance-Aware-Transaction-Sheduling Algorithm"
sql_print_error("In Galera, innodb_lock_schedule_algorithm=vats"
" is not supported.");
goto error;
}
@@ -3939,7 +3939,7 @@ innobase_init(
if (innodb_lock_schedule_algorithm == INNODB_LOCK_SCHEDULE_ALGORITHM_VATS
&& global_system_variables.wsrep_on) {
/* Do not allow InnoDB startup with VATS and Galera */
sql_print_error("In Galera environment Variance-Aware-Transaction-Sheduling Algorithm"
sql_print_error("In Galera, innodb_lock_schedule_algorithm=vats"
" is not supported.");
goto error;
}

0 comments on commit 2fe990d

Please sign in to comment.