~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/r/innodb_cmp.result

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use data_dictionary;
 
2
select * from INNODB_CMP;
 
3
PAGE_SIZE       COMPRESS_OPS    COMPRESS_OPS_OK COMPRESS_TIME   UNCOMPRESS_OPS  UNCOMPRESS_TIME
 
4
1024    0       0       0       0       0
 
5
2048    0       0       0       0       0
 
6
4096    0       0       0       0       0
 
7
8192    0       0       0       0       0
 
8
16384   0       0       0       0       0
 
9
show create table INNODB_CMP;
 
10
Table   Create Table
 
11
INNODB_CMP      CREATE TABLE `innodb_cmp` (
 
12
  `PAGE_SIZE` bigint NOT NULL DEFAULT '0',
 
13
  `COMPRESS_OPS` bigint NOT NULL DEFAULT '0',
 
14
  `COMPRESS_OPS_OK` bigint NOT NULL DEFAULT '0',
 
15
  `COMPRESS_TIME` bigint NOT NULL DEFAULT '0',
 
16
  `UNCOMPRESS_OPS` bigint NOT NULL DEFAULT '0',
 
17
  `UNCOMPRESS_TIME` bigint NOT NULL DEFAULT '0'
 
18
) ENGINE=FunctionEngine