diff options
Diffstat (limited to 'mysql-test/suite/innodb/t/innodb_bug47167.test')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb_bug47167.test | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mysql-test/suite/innodb/t/innodb_bug47167.test b/mysql-test/suite/innodb/t/innodb_bug47167.test index df056b91ff9..9b8bff0292f 100644 --- a/mysql-test/suite/innodb/t/innodb_bug47167.test +++ b/mysql-test/suite/innodb/t/innodb_bug47167.test @@ -4,7 +4,6 @@ # user-Defined Variable. --source include/have_innodb.inc --- source suite/innodb/include/have_innodb_plugin.inc # Save the value (Antelope) in 'innodb_file_format_check' to # 'old_innodb_file_format_check' @@ -32,15 +31,15 @@ select @@innodb_file_format_check; # Following are negative tests, all should fail. --disable_warnings ---error ER_WRONG_ARGUMENTS +--error ER_WRONG_VALUE_FOR_VAR set global innodb_file_format_check = cheetah; ---error ER_WRONG_ARGUMENTS +--error ER_WRONG_VALUE_FOR_VAR set global innodb_file_format_check = Bear; ---error ER_WRONG_ARGUMENTS +--error ER_WRONG_VALUE_FOR_VAR set global innodb_file_format_check = on; ---error ER_WRONG_ARGUMENTS +--error ER_WRONG_VALUE_FOR_VAR set global innodb_file_format_check = off; --enable_warnings |