~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use data_dictionary;
2
 
select * from INNODB_CMPMEM_RESET;
 
2
select * from INNODB_CMPMEM_RESET where PAGE_SIZE > 64;
3
3
PAGE_SIZE       PAGES_USED      PAGES_FREE      RELOCATION_OPS  RELOCATION_TIME
4
4
128     0       0       0       0
5
5
256     0       0       0       0
11
11
16384   0       0       0       0
12
12
show create table INNODB_CMPMEM_RESET;
13
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
 
14
INNODB_CMPMEM_RESET     CREATE TABLE `INNODB_CMPMEM_RESET` (
 
15
  `PAGE_SIZE` BIGINT NOT NULL,
 
16
  `PAGES_USED` BIGINT NOT NULL,
 
17
  `PAGES_FREE` BIGINT NOT NULL,
 
18
  `RELOCATION_OPS` BIGINT NOT NULL,
 
19
  `RELOCATION_TIME` BIGINT NOT NULL
 
20
) ENGINE=FunctionEngine COLLATE = utf8_general_ci