Hi,

I don't think I will change the behavior currently. My test case is:

drop table test;
create table test(id int constraint x primary key, parent int);
alter table test drop constraint x;
drop table test;
create table test(id int constraint x primary key, parent int
references test(id));
alter table test drop constraint x;

PostgreSQL throws the following exception:
Cannot drop constraint x on table test because other objects depend on it
HSQLDB: dependent objects exist

> Is this a bug in the code or in the documentation

The exception message is clear I believe.

Regards,
Thomas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to