~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: lbieber
  • Date: 2010-10-01 13:06:31 UTC
  • mfrom: (1802.2.2 drizzle-bug-651948)
  • mto: This revision was merged to the branch mainline in revision 1805.
  • Revision ID: lbieber@orisndriz08-20101001130631-xubscnhmj7r5dn6g
Merge Andrew - Fix bug 651948 - Index lengths not retrieved using drizzledump

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