if guid_ is null then
dbms_output.put_line('guid_ is null: ' || guid_);
end if;
Under some special circumstances, it prints
guid_ is null: 07D242FCC55000FCE0530A30D4928A21
Of course, this is impossible if PL/SQL were executing correctly. Either guid_ is null
or it has a value. Since the if statement executes the dbms_output
line, I should assume that guid_
is indeed null. Yet, a value for guid_
is printed.
This behaviour can be reproduced, at least on Oracle 11R2, with the following code:
create type tq84_t as table of varchar2(32);
/
create type tq84_o as object (
dummy number(1),
not final member procedure clear
) not final;
/
show errors
create type tq84_d under tq84_o (
g varchar2(32),
constructor function tq84_d return self as result,
overriding member procedure clear
);
/
show errors
create package tq84_h as
t tq84_t;
end tq84_h;
/
show errors
create package body tq84_h as
begin
t := tq84_t();
end;
/
show errors
create type body tq84_o as
member procedure clear is begin
null;
end clear;
end;
/
create type body tq84_d as
constructor function tq84_d return self as result is
begin
g := sys_guid;
return;
end tq84_d;
overriding member procedure clear is begin
tq84_h.t.extend;
tq84_h.t(tq84_h.t.count) := g;
g := null;
end clear;
end;
/
show errors
declare
b tq84_o; -- Change to tq84_d ...
guid_ varchar2(32);
begin
b := new tq84_d;
guid_ := treat(b as tq84_d).g;
b.clear;
if guid_ is null then
dbms_output.put_line('guid_ is null: ' || guid_);
end if;
end;
/
drop type tq84_t;
drop type tq84_d;
drop type tq84_o;
drop package tq84_h;
I have also asked a question on stackoverflow.
No comments:
Post a Comment