U kunt de configuratievariabele check_function_bodies
. instellen op false voordat u de functies maakt.
Dit zou u bijvoorbeeld in staat moeten stellen uw testfunctie te maken, hoewel test_table
bestaat niet:
BEGIN;
SET LOCAL check_function_bodies TO FALSE;
CREATE or REPLACE FUNCTION test_function() RETURNS INT AS $$
SELECT id from test_table;
$$ LANGUAGE sql;
COMMIT;
Documentatie:http:/ /www.postgresql.org/docs/9.5/static/runtime-config-client.html#GUC-CHECK-FUNCTION-BODIES