numeric_var_test.sql
application/sql
Filename: numeric_var_test.sql
Type: application/sql
Part: 2
Message:
Re: access numeric data in module
DROP FUNCTION IF EXISTS display_numeric(numeric);
CREATE FUNCTION display_numeric(numeric) RETURNS void
AS 'numeric_var_test.so'
LANGUAGE C STRICT;
DROP FUNCTION IF EXISTS negate_numeric(numeric);
CREATE FUNCTION negate_numeric(numeric) RETURNS numeric
AS 'numeric_var_test.so'
LANGUAGE C STRICT;