Search the MySQL manual:

7.6.7 Restrictions on BDB Tables

Here follows the restrictions you have when using BDB tables:

User Comments

Posted by Dan McDonald on Monday September 9 2002, @11:37am[Delete] [Edit]

Unique keys do not support multiple nulls for
secondary keys on BDB tables.
create table test (
id int unsigned not null primary key,
id2 int unsigned unique)
type=BDB;
insert into test set id=1;
insert into test set id=2;
"Duplicate entry 'Null' for key 2"

InnoDB and MyISAM tables will accept the second
insert.

Add your own comment.