~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/innodb/r/innodb_cmp_drop_table.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen, Otto Kekäläinen, James Page
  • Date: 2014-03-02 01:38:26 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140302013826-z3afnfteqo86pccd
Tags: 5.5.36-1
[ Otto Kekäläinen ]
* New upstream release.
* Updated Danish debconf translation (Closes: #739750).
* d/control: Added explicit Conflicts/Replaces for mysql-5.6 packages
  (Closes: #739841).
* d/control: Update for use of virtual-* packages for switching to/from
  MySQL alternatives.

[ James Page ]
* d/control: Drop Nicholas from Uploaders, MIA (Closes: #739360).
* d/control: Add libjemalloc-dev to BD's.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
set global innodb_file_per_table=on;
2
 
set global innodb_file_format=`1`;
3
 
create table t1(a text) engine=innodb key_block_size=8;
4
 
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
5
 
page_size
6
 
8192
7
 
drop table t1;
8
 
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
9
 
page_size
10
 
8192
11
 
create table t2(a text) engine=innodb;
12
 
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
13
 
page_size
14
 
drop table t2;