Skip to content

Commit 2fe990d

Browse files
committed
Fix the grammar of an error message
1 parent 46305b0 commit 2fe990d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

storage/innobase/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3483,7 +3483,7 @@ innobase_init(
34833483
if (innodb_lock_schedule_algorithm == INNODB_LOCK_SCHEDULE_ALGORITHM_VATS
34843484
&& global_system_variables.wsrep_on) {
34853485
/* Do not allow InnoDB startup with VATS and Galera */
3486-
sql_print_error("In Galera environment Variance-Aware-Transaction-Sheduling Algorithm"
3486+
sql_print_error("In Galera, innodb_lock_schedule_algorithm=vats"
34873487
" is not supported.");
34883488
goto error;
34893489
}

storage/xtradb/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3939,7 +3939,7 @@ innobase_init(
39393939
if (innodb_lock_schedule_algorithm == INNODB_LOCK_SCHEDULE_ALGORITHM_VATS
39403940
&& global_system_variables.wsrep_on) {
39413941
/* Do not allow InnoDB startup with VATS and Galera */
3942-
sql_print_error("In Galera environment Variance-Aware-Transaction-Sheduling Algorithm"
3942+
sql_print_error("In Galera, innodb_lock_schedule_algorithm=vats"
39433943
" is not supported.");
39443944
goto error;
39453945
}

0 commit comments

Comments
 (0)