Subject | Re: how stable is FB re SPs ? |
---|---|
Author | Peppe Polpo |
Post date | 2003-09-03T22:42:39Z |
--- In firebird-support@yahoogroups.com, Milan Babuskov <albis@e...>
wrote:
create procedure test
returns
(result integer)
as
begin
result=1;
suspend;
end
step 2:
create procedure test1
returns
(result integer)
as
begin
select result from test into :result;
suspend;
end
step 3:
(try procedure test1)
select result from test1
Result=1 (as expected)
step 4:
alter procedure test
returns
(result integer)
as
begin
result=2;
suspend;
end
step 5:
(try procedure test1)
select result from test1
Result=1 (instead of the expected value 2)
Isn't this a bug ?
Peppe Polpo
wrote:
> Unless you tell us what exaclty did you dostep 1:
create procedure test
returns
(result integer)
as
begin
result=1;
suspend;
end
step 2:
create procedure test1
returns
(result integer)
as
begin
select result from test into :result;
suspend;
end
step 3:
(try procedure test1)
select result from test1
Result=1 (as expected)
step 4:
alter procedure test
returns
(result integer)
as
begin
result=2;
suspend;
end
step 5:
(try procedure test1)
select result from test1
Result=1 (instead of the expected value 2)
Isn't this a bug ?
Peppe Polpo