~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Make sure http://bugs.mysql.com/41904 remains fixed.
 
3
#
 
4
 
 
5
-- source include/not_embedded.inc
 
6
-- source include/have_innodb.inc
 
7
 
 
8
CREATE TABLE bug41904 (id INT PRIMARY KEY, uniquecol CHAR(15)) ENGINE=InnoDB;
 
9
 
 
10
INSERT INTO bug41904 VALUES (1,NULL), (2,NULL);
 
11
 
 
12
CREATE UNIQUE INDEX ui ON bug41904 (uniquecol);
 
13
 
 
14
DROP TABLE bug41904;