~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_bug53591.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_format='Barracuda';
2
 
SET GLOBAL innodb_file_per_table=on;
3
 
set old_alter_table=0;
4
 
CREATE TABLE bug53591(a text charset utf8 not null)
5
 
ENGINE=InnoDB KEY_BLOCK_SIZE=1;
6
 
ALTER TABLE bug53591 ADD PRIMARY KEY(a(220));
7
 
ERROR HY000: Too big row
8
 
SHOW WARNINGS;
9
 
Level   Code    Message
10
 
Error   139     Too big row
11
 
Error   1118    Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline.
12
 
DROP TABLE bug53591;
13
 
SET GLOBAL innodb_file_format=Antelope;
14
 
SET GLOBAL innodb_file_per_table=0;