Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a related question, but this is another part of MY puzzle.

I would like to get the OLD VALUE of a Column from a Row that was UPDATEd - WITHOUT using Triggers (nor Stored Procedures, nor any other extra, non-SQL/-query entities).

The query I have is like this:

   UPDATE my_table
      SET processing_by = our_id_info -- unique to this worker
    WHERE trans_nbr IN (
                        SELECT trans_nbr
                          FROM my_table
                         GROUP BY trans_nbr
                        HAVING COUNT(trans_nbr) > 1
                         LIMIT our_limit_to_have_single_process_grab
                       )
RETURNING row_id;

If I could do "FOR UPDATE ON my_table" at the end of the subquery, that'd be devine (and fix my other question/problem). But, that won't work: can't have this AND a "GROUP BY" (which is necessary for figuring out the COUNT of trans_nbr's). Then I could just take those trans_nbr's and do a query first to get the (soon-to-be-) former processing_by values.

I've tried doing like:

   UPDATE my_table
      SET processing_by = our_id_info -- unique to this worker
     FROM my_table old_my_table
     JOIN (
             SELECT trans_nbr
               FROM my_table
           GROUP BY trans_nbr
             HAVING COUNT(trans_nbr) > 1
              LIMIT our_limit_to_have_single_process_grab
          ) sub_my_table
       ON old_my_table.trans_nbr = sub_my_table.trans_nbr
    WHERE     my_table.trans_nbr = sub_my_table.trans_nbr
      AND my_table.processing_by = old_my_table.processing_by
RETURNING my_table.row_id, my_table.processing_by, old_my_table.processing_by

But that can't work; old_my_table is not visible outside the join; the RETURNING clause is blind to it.

I've long since lost count of all the attempts I've made; I have been researching this for literally hours.

If I could just find a bullet-proof way to lock the rows in my subquery - and ONLY those rows, and WHEN the subquery happens - all the concurrency issues I'm trying to avoid would disappear ...


UPDATE: [WIPES EGG OFF FACE] Okay, so I had a typo in the non-generic code of the above that I wrote "doesn't work"; it does... thanks to Erwin Brandstetter, below, who stated it would, I re-did it (after a night's sleep, refreshed eyes, and a banana for bfast). Since it took me so long/hard to find this sort of solution, perhaps my embarrassment is worth it? At least this is on SO for posterity now... :>

What I now have (that works) is like this:

   UPDATE my_table
      SET processing_by = our_id_info -- unique to this worker
     FROM my_table AS old_my_table
    WHERE trans_nbr IN (
                          SELECT trans_nbr
                            FROM my_table
                        GROUP BY trans_nbr
                          HAVING COUNT(*) > 1
                           LIMIT our_limit_to_have_single_process_grab
                       )
      AND my_table.row_id = old_my_table.row_id
RETURNING my_table.row_id, my_table.processing_by, old_my_table.processing_by AS old_processing_by

The COUNT(*) is per a suggestion from Flimzy in a comment on my other (linked above) question. (I was more specific than necessary. [In this instance.])

Please see my other question for correctly implementing concurrency and even a non-blocking version; THIS query merely shows how to get the old and new values from an update, ignore the bad/wrong concurrency bits.

share|improve this question
Why can't you use a rule or trigger? – Flimzy Oct 28 '11 at 7:29
1  
Best way IMHO is to make the old rows historic, either by explicit SQL, or by a rewrite rule or trigger. – wildplasser Oct 28 '11 at 8:37
@Flimzy: 1. If one didn't have access to such things (though I do), if it CAN be done purely in SQL/single query... 2. Rules/triggers are a whole 'nother debug enchilada. 3. Keeping it simple, straight SQL, and having One Query To Do It All does K.I.S.S. nicely. Thanks, again, for the count(*) reminder, tho! :> – Python Larry Mar 28 at 20:40
@wildplasser: The goal is to get back (1) what was changed and (2) what was there before the change (at least). This is handy for jobs where what will be changed isn't explicitly known up front, but the program should know what the old vals were for processing. (Outputting before/after for troubleshooting, for example.) Historic rows are unnecessary clutter, rules and triggers are not only cruft (for this use case), but also require "more" (security, access, etc.). For those who don't have/want/need these, this solution is the best. – Python Larry Mar 28 at 20:43

1 Answer

up vote 9 down vote accepted

Problem

As suggested by @Larry, a hint for the faint of heart: Never mind the opening bad news. We'll prevail in the end. :)
The manual explains the matter:

The optional RETURNING clause causes UPDATE to compute and return value(s) based on each row actually updated. Any expression using the table's columns, and/or columns of other tables mentioned in FROM, can be computed. The new (post-update) values of the table's columns are used. The syntax of the RETURNING list is identical to that of the output list of SELECT.

Emphasis mine. For all I know, there is no way to access the old row in a RETURNING clause. You can do that in a trigger or with a separate SELECT before the UPDATE (wrapped in a transaction) as @Flimzy and @wildplasser commented.

Solution

However, what you are trying to achieve works perfectly fine if you join in another instance of the table in the FROM clause.

UPDATE tbl x
SET    id = 23
      ,name = 'New Guy'
FROM   tbl y
WHERE  x.id = y.id
AND    x.id = 3
RETURNING y.id AS old_id, y.name AS old_name, x.id, x.name;

Returns:

 old_id | old_name | id |  name
--------+----------+----+---------
  3     | Old Guy  | 23 | New Guy

->SQLfiddle

So, all is well! I tested this on PostgreSQL 8.4, 9.0, 9.1 and 9.2.

Dealing with heavy concurrent load

There are several ways to avoid race conditions with concurrent write operations. The simple, slow and sure method is to run the transaction with serializable isolation level.

BEGIN ISOLATION LEVEL SERIALIZABLE;
UPDATE ..;
COMMIT;

But that's probably overkill. And you'd need to be prepared to repeat the operation if you get a serialization failure.
Simpler and faster (and just as reliable with concurrent write load) is an explicit lock on the one row to be updated:

UPDATE tbl x SET id = 24, name = 'New Gal'
FROM  (SELECT id, name FROM tbl WHERE id = 4 FOR UPDATE) y 
WHERE  x.id = y.id
RETURNING y.id AS old_id, y.name AS old_name, x.id, x.name;

More explanation, examples and links under this related question:
atomic update..select in postgres

share|improve this answer
Pretty cool trick. – a_horse_with_no_name Oct 28 '11 at 11:23
@a_horse_with_no_name: Do you happen to have a 9.1 cluster at hand where you could run this little test in? To make things complete .. :) – Erwin Brandstetter Oct 28 '11 at 11:30
2  
Works on 9.1 just as well (I would have been very surprised if it didn't) – a_horse_with_no_name Oct 28 '11 at 11:36
2  
It works well until it doesn't. For me it happens with running the same request with different parameters with reasonably small delay (about 10 milliseconds). In this case following requests will have old value from one of followed requests (read as 'object having different key'), not the running one. So use that with caution in cases with heavy load! – JLarky Aug 21 '12 at 16:03
2  
@JLarky: Good point. I added a solution for that. – Erwin Brandstetter Aug 21 '12 at 22:34
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.