You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code causes this behavior every time. Without the intermediate COMMITs it's working
SET TERM ^ ;
CREATE PROCEDURE SP_TEST
RETURNS (X VARCHAR(8))
AS
BEGIN
X = '1';
SUSPEND;
END
^
SET TERM ; ^
COMMIT;
CREATE VIEW VIEW_TEST(Y)
AS
SELECT (SELECT X FROM SP_TEST) AS Y FROM RDB$DATABASE;
COMMIT;
SET TERM ^ ;
ALTER PROCEDURE SP_TEST
RETURNS (X VARCHAR(8))
AS
BEGIN
X = '2';
SUSPEND;
END
^
SET TERM ; ^
When trying to alter the body of a procedure which is used in a view i get an error message "Dependencies broken".
Using isql this works without any problem.
FB 2.5.9
The text was updated successfully, but these errors were encountered: