~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/mysql-test/innodb_bug47167.result

  • Committer: Olaf van der Spek
  • Date: 2011-02-12 18:24:24 UTC
  • mto: (2167.1.2 build) (2172.1.4 build)
  • mto: This revision was merged to the branch mainline in revision 2168.
  • Revision ID: olafvdspek@gmail.com-20110212182424-kgnm9osi7qo97at2
casts

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