~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

Viewing changes to mysql-test/suite/innodb/t/blob_unique2pk.test

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/have_innodb.inc
 
2
 
 
3
 
 
4
#
 
5
# Bug#16368875 INNODB: FAILING ASSERTION: PRIMARY_KEY_NO == -1 || PRIMARY_KEY_NO == 0
 
6
#
 
7
create table t1 (f1 tinyblob not null) engine=innodb;
 
8
alter table t1 add unique index (f1(255));
 
9
drop table t1;
 
10
 
 
11
create table t1 (f1 tinyblob not null) engine=innodb;
 
12
alter table t1 add unique index (f1(356));
 
13
show create table t1;
 
14
drop table t1;
 
15
 
 
16
create table t1 (f1 point not null) engine=innodb;
 
17
alter table t1 add unique index (f1);
 
18
drop table t1;
 
19
 
 
20