1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-03 20:43:11 +03:00

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

(different error number).
This commit is contained in:
Vasil Dimov
2010-04-14 18:40:24 +03:00
parent 681e3dd164
commit ab297b1402
2 changed files with 12 additions and 12 deletions

View File

@@ -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;

View File

@@ -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.