~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-03-01 17:04:10 UTC
  • mfrom: (1309.1.23 build)
  • Revision ID: brian@gaz-20100301170410-ph8eb1hdf9rqks51
Merge up build to staging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use data_dictionary;
 
2
select * from INNODB_CMPMEM_RESET;
 
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_RESET;
 
13
Table   Create Table
 
14
INNODB_CMPMEM_RESET     CREATE TABLE `innodb_cmpmem_reset` (
 
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