Delayed result from another connection

Поиск
Список
Период
Сортировка
От SZŰCS Gábor
Тема Delayed result from another connection
Дата
Msg-id 012601c4c292$6804b810$0403a8c0@fejleszt4
обсуждение исходный текст
Ответы Re: Delayed result from another connection
Список pgsql-sql
Dear Gurus,

I have a strange scenario that doesn't seem to work flawlessly. I think I
can produce a full working example if needed.

We use postgresql 7.4.5
It's something like this:

%----------------------- cut here -----------------------%
CREATE TABLE php_retval(id serial PRIMARY KEY, retval varchar);
CREATE FUNCTION php_run(int, varchar) RETURNS varchar AS '
declare   seq ALIAS FOR $1;   php ALIAS FOR $2;   ret varchar;
begin   perform php_run_c(php, seq);   ret := retval from php_retval where id = seq;   return ret;
end;'   LANGUAGE 'plpgsql' VOLATILE STRICT;
%----------------------- cut here -----------------------%

Now, this calls a c (SPI) function that calls system() to execute "php -q"

The php connects to the database and updates retval where id=seq.

It seems to be OK, but the function returns the value of php_retval.retval
_before_ the call. However, the php does the update. If I repeat the
function call in the transaction, the new result is returned:

%----------------------- cut here -----------------------%
UPDATE php_retval SET retval='nothing' WHERE id=1;
BEGIN;   SELECT php_run(1, 'test.php');   --> 'nothing'   SELECT php_run(1, 'test.php');   --> '3', the right value
END;
%----------------------- cut here -----------------------%

I thought it's something about "35.2 Visibility of Data Changes", but that's
only for triggers, isn't it? Also, the rule "query sees results of any
previously started queries" seems to be invaded: the perform runs right
before the query for retval.

Any ideas, explanations, clarifications, points to earlier discussions, rtfm
etc?

TIA,
G.
%----------------------- cut here -----------------------%
\end



В списке pgsql-sql по дате отправления:

Предыдущее
От: "Michael L. Hostbaek"
Дата:
Сообщение: Group by and aggregates
Следующее
От: Michael Fuhr
Дата:
Сообщение: Re: Group by and aggregates