Du kan indstille konfigurationsvariablen check_function_bodies
til false, før du opretter funktionerne.
For eksempel skulle dette lade dig oprette din testfunktion, selvom test_table
eksisterer ikke:
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;
Dokumentation:http:/ /www.postgresql.org/docs/9.5/static/runtime-config-client.html#GUC-CHECK-FUNCTION-BODIES