diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2017-12-13 20:41:32 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2017-12-13 20:41:32 +0200 |
commit | 2fe990df9f25ead34d9d7a39e19f939fbbfea127 (patch) | |
tree | 085f76cb06c307cecb7f6056fab3249e328cf44d | |
parent | 46305b006b04b5bacffbbb04c6587038c1f8dc8d (diff) | |
download | mariadb-git-2fe990df9f25ead34d9d7a39e19f939fbbfea127.tar.gz |
Fix the grammar of an error message
-rw-r--r-- | storage/innobase/handler/ha_innodb.cc | 2 | ||||
-rw-r--r-- | storage/xtradb/handler/ha_innodb.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc index 2d319439fad..6e98bab66af 100644 --- a/storage/innobase/handler/ha_innodb.cc +++ b/storage/innobase/handler/ha_innodb.cc @@ -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; } diff --git a/storage/xtradb/handler/ha_innodb.cc b/storage/xtradb/handler/ha_innodb.cc index 8487c5b2510..dd7c5b8324a 100644 --- a/storage/xtradb/handler/ha_innodb.cc +++ b/storage/xtradb/handler/ha_innodb.cc @@ -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; } |