Re: Waiting for Commit - Mailing list pgsql-general

From Tom Lane
Subject Re: Waiting for Commit
Date
Msg-id 798.1080355360@sss.pgh.pa.us
Whole thread Raw
In response to Waiting for Commit  ("Pablo Montilla" <melkor@adinet.com.uy>)
List pgsql-general
"Pablo Montilla" <melkor@adinet.com.uy> writes:
> What I've got is something like this:

> Session1> INSERT INTO Table VALUES(0);
> Session1> COMMIT;
> Session2> SELECT FROM Table;

> And Session2 is not gettint the values I've just commited.

I don't believe that can happen, unless you've made a programming
error.

(1) Are you waiting for the COMMIT response to come back before you
issue the other SELECT?

(2) Are you running the other transaction in serializable mode?
If so, it won't see commits that happened later than its own BEGIN.

            regards, tom lane

pgsql-general by date:

Previous
From: David Garamond
Date:
Subject: Re: Beginner Questions Please: Which To Go With ?
Next
From: Tom Lane
Date:
Subject: Re: Problem with memory in C function