~percona-core/percona-server/5.5

« back to all changes in this revision

Viewing changes to Percona-Server/mysql-test/r/percona_bug1218330.result

  • Committer: Laurynas Biveinis
  • Date: 2013-09-06 13:24:59 UTC
  • mfrom: (558.8.3 5.5)
  • Revision ID: laurynas.biveinis@percona.com-20130906132459-jfaquw8dbwluzbsl
MergeĀ lp:~akopytov/percona-server/ahi-fixes-5.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (
 
2
a INT PRIMARY KEY, b INT,
 
3
c CHAR(200),
 
4
UNIQUE INDEX b(b)) ENGINE=InnoDB;
 
5
INSERT INTO t1 VALUES (1, 1, REPEAT("a", 200));
 
6
should_be_1
 
7
1
 
8
DROP TABLE t1;