some DDL statements can't be executed in one transaction
--------------------------------------------------------
Key: CORE-5763
URL: http://tracker.firebirdsql.org/browse/CORE-5763
Project: Firebird Core
Issue Type: Bug
Components: Engine
Affects Versions: 3.0.3
Environment: Windows 7
Reporter: fbbt
CREATE TABLE T (F INTEGER);
CREATE TRIGGER T_BI FOR T ACTIVE BEFORE INSERT POSITION 0
AS
BEGIN
NEW.F = 0;
END
COMMIT;
scenario 1:
DROP TRIGGER T_BI;
ALTER TABLE T ALTER F TO FF;
-- error:
-- unsuccessful metadata update
-- Column F from table T is referenced in T_BI
scenario 2:
DROP TRIGGER T_BI;
ALTER TABLE T DROP F;
COMMIT;
-- ok
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
Firebird-Devel mailing list, web interface at
https://lists.sourceforge.net/lists/listinfo/firebird-devel