mirror of
https://github.com/postgres/postgres.git
synced 2025-05-29 16:21:20 +03:00
It's a bit silly to have test functions that aren't tested, so test them. In passing, rename int44in/int44out to city_budget_in/_out so that they match how the regression tests use them. Also, fix city_budget_out so that it emits the format city_budget_in expects to read; otherwise we'd have dump/reload failures when testing pg_dump against the regression database. (We avoided that in the past only because no data of type city_budget was actually stored anywhere.) Discussion: https://postgr.es/m/29322.1519701006@sss.pgh.pa.us
91 lines
2.1 KiB
Plaintext
91 lines
2.1 KiB
Plaintext
--
|
|
-- CREATE_FUNCTION_1
|
|
--
|
|
|
|
CREATE FUNCTION widget_in(cstring)
|
|
RETURNS widget
|
|
AS '@libdir@/regress@DLSUFFIX@'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION widget_out(widget)
|
|
RETURNS cstring
|
|
AS '@libdir@/regress@DLSUFFIX@'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION city_budget_in(cstring)
|
|
RETURNS city_budget
|
|
AS '@libdir@/regress@DLSUFFIX@'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION city_budget_out(city_budget)
|
|
RETURNS cstring
|
|
AS '@libdir@/regress@DLSUFFIX@'
|
|
LANGUAGE C STRICT IMMUTABLE;
|
|
|
|
CREATE FUNCTION check_primary_key ()
|
|
RETURNS trigger
|
|
AS '@libdir@/refint@DLSUFFIX@'
|
|
LANGUAGE C;
|
|
|
|
CREATE FUNCTION check_foreign_key ()
|
|
RETURNS trigger
|
|
AS '@libdir@/refint@DLSUFFIX@'
|
|
LANGUAGE C;
|
|
|
|
CREATE FUNCTION autoinc ()
|
|
RETURNS trigger
|
|
AS '@libdir@/autoinc@DLSUFFIX@'
|
|
LANGUAGE C;
|
|
|
|
CREATE FUNCTION ttdummy ()
|
|
RETURNS trigger
|
|
AS '@libdir@/regress@DLSUFFIX@'
|
|
LANGUAGE C;
|
|
|
|
CREATE FUNCTION set_ttdummy (int4)
|
|
RETURNS int4
|
|
AS '@libdir@/regress@DLSUFFIX@'
|
|
LANGUAGE C STRICT;
|
|
|
|
CREATE FUNCTION make_tuple_indirect (record)
|
|
RETURNS record
|
|
AS '@libdir@/regress@DLSUFFIX@'
|
|
LANGUAGE C STRICT;
|
|
|
|
CREATE FUNCTION test_atomic_ops()
|
|
RETURNS bool
|
|
AS '@libdir@/regress@DLSUFFIX@'
|
|
LANGUAGE C;
|
|
|
|
-- Tests creating a FDW handler
|
|
CREATE FUNCTION test_fdw_handler()
|
|
RETURNS fdw_handler
|
|
AS '@libdir@/regress@DLSUFFIX@', 'test_fdw_handler'
|
|
LANGUAGE C;
|
|
|
|
-- Things that shouldn't work:
|
|
|
|
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
|
|
AS 'SELECT ''not an integer'';';
|
|
|
|
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
|
|
AS 'not even SQL';
|
|
|
|
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
|
|
AS 'SELECT 1, 2, 3;';
|
|
|
|
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
|
|
AS 'SELECT $2;';
|
|
|
|
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE SQL
|
|
AS 'a', 'b';
|
|
|
|
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE C
|
|
AS 'nosuchfile';
|
|
|
|
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE C
|
|
AS '@libdir@/regress@DLSUFFIX@', 'nosuchsymbol';
|
|
|
|
CREATE FUNCTION test1 (int) RETURNS int LANGUAGE internal
|
|
AS 'nosuch';
|