Given (pseudocode)

    CREATE TABLE kvstore (
        k varchar primary key,
        v varchar);

    CREATE OR REPLACE FUNCTION store_key_value_pair(k varchar, v varchar) 
returns boolean as $$
    BEGIN
      INSERT INTO kvstore (k, v)
      SELECT :k, :v
      WHERE NOT EXISTS (select 1 from kvstore where k = :k);
      RETURN FOUND;
    END;
    $$ LANGUAGE plpgsql;

I have a few questions:

1) Does INSERT statement set FOUND based on whether or not the row was inserted?
2) If this is invoked without a transaction in progress, is there any guarantee 
of atomicity between checking the EXISTS and attempting to insert the row?  If 
this is being executed in two (or more) sessions, can the SELECT succeed but 
then have the INSERT fail with a duplicate-key exception?
3) Will the behavior be different if the invoking processes have a transaction 
in progress?



-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to