What's the Postgres 8.4.8 equivalent of
DO $$ BEGIN IF NOT EXISTS (...) THEN EXECUTE ...; END IF; END; $$;
?
create function f() returns void as $$ BEGIN IF NOT EXISTS (...) THEN EXECUTE ...; END IF; END; $$ language plpgsql; select f();
DO
f
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 months ago
viewed
28 times
active