~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-11-19 19:42:44 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1944.
  • Revision ID: brian@tangent.org-20101119194244-7vx6u5vwzvu9uvex
Remove dead getShare() call which should have been a call on the cache
directly.

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