~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/mysql-test/innodb_bug41904.result

Tags: innodb-plugin-1.0.3
InnoDB Plugin 1.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE bug41904 (id INT PRIMARY KEY, uniquecol CHAR(15)) ENGINE=InnoDB;
 
2
INSERT INTO bug41904 VALUES (1,NULL), (2,NULL);
 
3
CREATE UNIQUE INDEX ui ON bug41904 (uniquecol);
 
4
DROP TABLE bug41904;