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

« back to all changes in this revision

Viewing changes to mysql-test/suite/storage_engine/tbl_opt_key_block_size.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
CREATE TABLE t1 (a <INT_COLUMN>, b <CHAR_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS> KEY_BLOCK_SIZE=8;
 
3
SHOW CREATE TABLE t1;
 
4
Table   Create Table
 
5
t1      CREATE TABLE `t1` (
 
6
  `a` int(11) DEFAULT NULL,
 
7
  `b` char(8) DEFAULT NULL
 
8
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 KEY_BLOCK_SIZE=8
 
9
ALTER TABLE t1 KEY_BLOCK_SIZE=1;
 
10
SHOW CREATE TABLE t1;
 
11
Table   Create Table
 
12
t1      CREATE TABLE `t1` (
 
13
  `a` int(11) DEFAULT NULL,
 
14
  `b` char(8) DEFAULT NULL
 
15
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 KEY_BLOCK_SIZE=1
 
16
DROP TABLE t1;