~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-02 19:48:35 UTC
  • mfrom: (1730.6.19 drizzle-make-lcov)
  • Revision ID: lbieber@orisndriz08-20101002194835-q5zd9qc4lvx1xnfo
Merge Hartmut - clean up lex, now require flex to build, also "make lcov" improvements

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