Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d72f449a
Commit
d72f449a
authored
Apr 14, 2010
by
Vasil Dimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update mysql-test innodb_file_format to match the latest behavior
(different error number).
parent
85593536
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
mysql-test/r/innodb_file_format.result
mysql-test/r/innodb_file_format.result
+6
-6
mysql-test/t/innodb_file_format.test
mysql-test/t/innodb_file_format.test
+6
-6
No files found.
mysql-test/r/innodb_file_format.result
View file @
d72f449a
...
...
@@ -7,7 +7,7 @@ Antelope
set global innodb_file_format=antelope;
set global innodb_file_format=barracuda;
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'
select @@innodb_file_format;
@@innodb_file_format
Barracuda
...
...
@@ -16,16 +16,16 @@ select @@innodb_file_format;
@@innodb_file_format
Antelope
set global innodb_file_format=on;
ERROR
HY000: Incorrect arguments to SET
ERROR
42000: Variable 'innodb_file_format' can't be set to the value of 'ON'
set global innodb_file_format=off;
ERROR
HY000: Incorrect arguments to SET
ERROR
42000: Variable 'innodb_file_format' can't be set to the value of 'off'
select @@innodb_file_format;
@@innodb_file_format
Antelope
set global innodb_file_format_check=antelope;
set global innodb_file_format_check=barracuda;
set global innodb_file_format_check=cheetah;
ERROR
HY000: Incorrect arguments to SET
ERROR
42000: Variable 'innodb_file_format_check' can't be set to the value of 'cheetah'
select @@innodb_file_format_check;
@@innodb_file_format_check
Barracuda
...
...
@@ -34,9 +34,9 @@ select @@innodb_file_format_check;
@@innodb_file_format_check
Barracuda
set global innodb_file_format=on;
ERROR
HY000: Incorrect arguments to SET
ERROR
42000: Variable 'innodb_file_format' can't be set to the value of 'ON'
set global innodb_file_format=off;
ERROR
HY000: Incorrect arguments to SET
ERROR
42000: Variable 'innodb_file_format' can't be set to the value of 'off'
select @@innodb_file_format_check;
@@innodb_file_format_check
Barracuda
...
...
mysql-test/t/innodb_file_format.test
View file @
d72f449a
...
...
@@ -4,26 +4,26 @@ select @@innodb_file_format;
select
@@
innodb_file_format_check
;
set
global
innodb_file_format
=
antelope
;
set
global
innodb_file_format
=
barracuda
;
--
error
ER_WRONG_
ARGUMENTS
--
error
ER_WRONG_
VALUE_FOR_VAR
set
global
innodb_file_format
=
cheetah
;
select
@@
innodb_file_format
;
set
global
innodb_file_format
=
default
;
select
@@
innodb_file_format
;
--
error
ER_WRONG_
ARGUMENTS
--
error
ER_WRONG_
VALUE_FOR_VAR
set
global
innodb_file_format
=
on
;
--
error
ER_WRONG_
ARGUMENTS
--
error
ER_WRONG_
VALUE_FOR_VAR
set
global
innodb_file_format
=
off
;
select
@@
innodb_file_format
;
set
global
innodb_file_format_check
=
antelope
;
set
global
innodb_file_format_check
=
barracuda
;
--
error
ER_WRONG_
ARGUMENTS
--
error
ER_WRONG_
VALUE_FOR_VAR
set
global
innodb_file_format_check
=
cheetah
;
select
@@
innodb_file_format_check
;
set
global
innodb_file_format_check
=
default
;
select
@@
innodb_file_format_check
;
--
error
ER_WRONG_
ARGUMENTS
--
error
ER_WRONG_
VALUE_FOR_VAR
set
global
innodb_file_format
=
on
;
--
error
ER_WRONG_
ARGUMENTS
--
error
ER_WRONG_
VALUE_FOR_VAR
set
global
innodb_file_format
=
off
;
select
@@
innodb_file_format_check
;
set
global
innodb_file_format_check
=
antelope
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment