Wrong error at ALTER PACKAGE
----------------------------

                 Key: CORE-4570
                 URL: http://tracker.firebirdsql.org/browse/CORE-4570
             Project: Firebird Core
          Issue Type: Bug
    Affects Versions: 3.0 Alpha 2
            Reporter: Vlad Khorsun


1. Create package and its body:

create package p1
as
begin
  function f(x int) returns int;
end

create package body p1
as
begin
  function f1(x int) returns int;

  function f(x int) returns int
  as
  begin
    return f1(x) * x;
  end

  function f1(x int) returns int
  as
  begin
     return 1;
  end
end

commit

Result is OK


2. Alter package

alter package p1
as
begin
  function f(x int) returns int;
  function g(x int) returns int;
end
commit

Result is:

This operation is not defined for system tables.
unsuccessful metadata update.
cannot delete.
UDF P1.F1.
there are 1 dependencies.



-- 
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

        

------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to