Search Postgresql Archives

Atomicity of INSERT INTO ... SELECT ... WHERE NOT EXISTS ...

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general





[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux