~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/innodb/r/innodb_bug47167.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set @old_innodb_file_format_check=@@innodb_file_format_check;
 
2
select @old_innodb_file_format_check;
 
3
@old_innodb_file_format_check
 
4
Antelope
 
5
set global innodb_file_format_check = Barracuda;
 
6
select @@innodb_file_format_check;
 
7
@@innodb_file_format_check
 
8
Barracuda
 
9
set global innodb_file_format_check = DEFAULT;
 
10
select @@innodb_file_format_check;
 
11
@@innodb_file_format_check
 
12
Barracuda
 
13
set global innodb_file_format_check = @old_innodb_file_format_check;
 
14
select @@innodb_file_format_check;
 
15
@@innodb_file_format_check
 
16
Antelope
 
17
set global innodb_file_format_check = cheetah;
 
18
ERROR HY000: Incorrect arguments to SET
 
19
set global innodb_file_format_check = Bear;
 
20
ERROR HY000: Incorrect arguments to SET
 
21
set global innodb_file_format_check = on;
 
22
ERROR HY000: Incorrect arguments to SET
 
23
set global innodb_file_format_check = off;
 
24
ERROR HY000: Incorrect arguments to SET