Commit ab297b14 authored by Vasil Dimov's avatar Vasil Dimov

Update mysql-test innodb-zip to match the latest behavior

(different error number).
parent 681e3dd1
...@@ -173,19 +173,19 @@ select @@innodb_file_format; ...@@ -173,19 +173,19 @@ select @@innodb_file_format;
@@innodb_file_format @@innodb_file_format
Barracuda Barracuda
set global innodb_file_format=`2`; set global innodb_file_format=`2`;
ERROR HY000: Incorrect arguments to SET ERROR 42000: Variable 'innodb_file_format' can't be set to the value of '2'
set global innodb_file_format=`-1`; set global innodb_file_format=`-1`;
ERROR HY000: Incorrect arguments to SET ERROR 42000: Variable 'innodb_file_format' can't be set to the value of '-1'
set global innodb_file_format=`Antelope`; set global innodb_file_format=`Antelope`;
set global innodb_file_format=`Barracuda`; set global innodb_file_format=`Barracuda`;
set global innodb_file_format=`Cheetah`; set global innodb_file_format=`Cheetah`;
ERROR HY000: Incorrect arguments to SET ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'Cheetah'
set global innodb_file_format=`abc`; set global innodb_file_format=`abc`;
ERROR HY000: Incorrect arguments to SET ERROR 42000: Variable 'innodb_file_format' can't be set to the value of 'abc'
set global innodb_file_format=`1a`; set global innodb_file_format=`1a`;
ERROR HY000: Incorrect arguments to SET ERROR 42000: Variable 'innodb_file_format' can't be set to the value of '1a'
set global innodb_file_format=``; set global innodb_file_format=``;
ERROR HY000: Incorrect arguments to SET ERROR 42000: Variable 'innodb_file_format' can't be set to the value of ''
set global innodb_file_per_table = on; set global innodb_file_per_table = on;
set global innodb_file_format = `1`; set global innodb_file_format = `1`;
set innodb_strict_mode = off; set innodb_strict_mode = off;
......
...@@ -142,19 +142,19 @@ set global innodb_file_format=`0`; ...@@ -142,19 +142,19 @@ set global innodb_file_format=`0`;
select @@innodb_file_format; select @@innodb_file_format;
set global innodb_file_format=`1`; set global innodb_file_format=`1`;
select @@innodb_file_format; select @@innodb_file_format;
-- error ER_WRONG_ARGUMENTS -- error ER_WRONG_VALUE_FOR_VAR
set global innodb_file_format=`2`; set global innodb_file_format=`2`;
-- error ER_WRONG_ARGUMENTS -- error ER_WRONG_VALUE_FOR_VAR
set global innodb_file_format=`-1`; set global innodb_file_format=`-1`;
set global innodb_file_format=`Antelope`; set global innodb_file_format=`Antelope`;
set global innodb_file_format=`Barracuda`; set global innodb_file_format=`Barracuda`;
-- error ER_WRONG_ARGUMENTS -- error ER_WRONG_VALUE_FOR_VAR
set global innodb_file_format=`Cheetah`; set global innodb_file_format=`Cheetah`;
-- error ER_WRONG_ARGUMENTS -- error ER_WRONG_VALUE_FOR_VAR
set global innodb_file_format=`abc`; set global innodb_file_format=`abc`;
-- error ER_WRONG_ARGUMENTS -- error ER_WRONG_VALUE_FOR_VAR
set global innodb_file_format=`1a`; set global innodb_file_format=`1a`;
-- error ER_WRONG_ARGUMENTS -- error ER_WRONG_VALUE_FOR_VAR
set global innodb_file_format=``; set global innodb_file_format=``;
#test strict mode. #test strict mode.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment