Server crashes with database corruption when DELETE after adding new
referencing column
---------------------------------------------------------------------------------------
Key: CORE-5016
URL: http://tracker.firebirdsql.org/browse/CORE-5016
Project: Firebird Core
Issue Type: Bug
Components: Engine
Affects Versions: 3.0 RC 1
Reporter: Tim Kelly
CREATE DATABASE 'TEST.FDB' user 'SYSDBA' password 'masterkey';
CREATE TABLE A (X INTEGER PRIMARY KEY);
CREATE TABLE B (X INTEGER PRIMARY KEY);
INSERT INTO B VALUES (1);
COMMIT;
ALTER TABLE B ADD Y INTEGER REFERENCES A(X);
COMMIT;
DELETE FROM B;
COMMIT;
SELECT COUNT(*) FROM B; <<SERVER CRASHES HERE.
--
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
------------------------------------------------------------------------------
Firebird-Devel mailing list, web interface at
https://lists.sourceforge.net/lists/listinfo/firebird-devel