G'day,
Could someone please explain what the inline_0 and inline_1
functions do in the notes-create.sql file of the Notes package.
Firstly the inline_0 function is created, then followed by a select,
and then the function is dropped. I don't understand what is being
done here. Is it a way of initialising an object? The code that I
am referring to is as follows...
create function inline_0 ()
returns integer as '
begin
PERFORM acs_object_type__create_type (
''note'' -- object_type
''Note'' -- pretty_name
etc ...
);
return 0;
end;' language 'plpgsql';
select inline_0 ();
drop function inline_0 ();
Cheers,
Nick.
Request notifications