Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.0-beta1
-
None
-
None
Description
In some databases (derby), tables cannot be dropped if views still reference them.
However, the generated sql looked like
Drop table..
Create table..
Drop View...
Create View
It should be
Drop view..
Drop table...
Create Table...
Create View...