~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/r/innodb_cmpmem.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_CMPMEM;
 
3
PAGE_SIZE       PAGES_USED      PAGES_FREE      RELOCATION_OPS  RELOCATION_TIME
 
4
128     0       0       0       0
 
5
256     0       0       0       0
 
6
512     0       0       0       0
 
7
1024    0       0       0       0
 
8
2048    0       0       0       0
 
9
4096    0       0       0       0
 
10
8192    0       0       0       0
 
11
16384   0       0       0       0
 
12
show create table INNODB_CMPMEM;
 
13
Table   Create Table
 
14
INNODB_CMPMEM   CREATE TABLE `innodb_cmpmem` (
 
15
  `PAGE_SIZE` bigint NOT NULL DEFAULT '0',
 
16
  `PAGES_USED` bigint NOT NULL DEFAULT '0',
 
17
  `PAGES_FREE` bigint NOT NULL DEFAULT '0',
 
18
  `RELOCATION_OPS` bigint NOT NULL DEFAULT '0',
 
19
  `RELOCATION_TIME` bigint NOT NULL DEFAULT '0'
 
20
) ENGINE=FunctionEngine