To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=109041





------- Additional comments from [email protected] Mon Feb  8 16:01:58 
+0000 2010 -------
Here is a function to test, create a database and install the PL/pgSQL language
in it using the 'creatlang' command line utility.  Then load the following
function (put it in file, and from within psql read it in using \i <filename>):

CREATE OR REPLACE FUNCTION
        ooo_test(INTEGER)
RETURNS
        INTEGER
AS $$
DECLARE
        nr ALIAS FOR $1;
BEGIN
        RETURN nr * 2;
END;
$$ LANGUAGE plpgsql;

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to