working around setQuerySnapshot limitations in functions - Mailing list pgsql-sql

From Robert Treat
Subject working around setQuerySnapshot limitations in functions
Date
Msg-id 1040055813.19398.49.camel@camel
Whole thread Raw
Responses Re: [GENERAL] working around setQuerySnapshot limitations in functions  (Jakub Ouhrabka <jouh8664@ss1000.ms.mff.cuni.cz>)
List pgsql-sql
I have a function called move_tree() which moves a node from 1 parent to
another (in a nested set tree) by computing some necessary values, then
updating the nodes as needed.  The problem I have is that when the
function is called multiple times simultaneously, each function does a
setQuerySnapshot at the start of the function, and then cannot see the
changes made by the other function calls. I had thought to do a lock on
the table at the start of my function, but due to the fact
setQuerySnapshot is called at the function start (before I can acquire a
lock) I can't guarantee no changes have been made before the function
tries to make changes. ISTM the only way around this is to do a lock on
the table before calling the function. The major downside to that it
requires me to put that logic inside any apps that use the function,
rather than being able to keep it inside the database.  Does anyone see
another work-around?

Robert Treat





pgsql-sql by date:

Previous
From: Tim Perdue
Date:
Subject: Re: ON DELETE CASCADE
Next
From: Ludwig Lim
Date:
Subject: CHECKS vs. BEFORE INSERT OR UPDATE TRIGGER