Subject | Re: [firebird-support] bugged "alter procedure" |
---|---|
Author | Henryk Paluch |
Post date | 2003-09-09T06:56:06Z |
>I have procedure A.Hi!
>
>This procedure calls procedure B, that I have changed with "alter
>procedure".
>If I try to delete procedure A, I get the message
You need to compile again procedure A too. When A includes B then change
in B is not reflected in A (that A still contains copy of old B
procedure).
It seems that Firebird does not call B from A, but that A contains
expanded code from B (somehting like macro expansion), but it is pure
guess...