pgsql: Propagate xactStartTimestamp and stmtStartTimestamp toparallel

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Propagate xactStartTimestamp and stmtStartTimestamp toparallel
Дата
Msg-id E1g8p0N-0005yM-4j@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Propagate xactStartTimestamp and stmtStartTimestamp to parallel workers.

Previously, a worker process would establish values for these based on
its own start time.  In v10 and up, this can trivially be shown to cause
misbehavior of transaction_timestamp(), timestamp_in(), and related
functions which are (perhaps unwisely?) marked parallel-safe.  It seems
likely that other behaviors might diverge from what happens in the parent
as well.

It's not as trivial to demonstrate problems in 9.6 or 9.5, but I'm sure
it's still possible, so back-patch to all branches containing parallel
worker infrastructure.

In HEAD only, mark now() and statement_timestamp() as parallel-safe
(other affected functions already were).  While in theory we could
still squeeze that change into v11, it doesn't seem important enough
to force a last-minute catversion bump.

Konstantin Knizhnik, whacked around a bit by me

Discussion: https://postgr.es/m/6406dbd2-5d37-4cb6-6eb2-9c44172c7e7c@postgrespro.ru

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/07ee62ce9e507c14632c0517aeeae4e60b0d1997

Modified Files
--------------
src/backend/access/transam/parallel.c | 11 +++++++++++
src/backend/access/transam/xact.c     | 36 +++++++++++++++++++++++++++++++----
src/include/access/xact.h             |  1 +
src/include/catalog/catversion.h      |  2 +-
src/include/catalog/pg_proc.dat       | 12 +++++++-----
5 files changed, 52 insertions(+), 10 deletions(-)


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

Предыдущее
От: Dean Rasheed
Дата:
Сообщение: pgsql: Improve the accuracy of floating point statistical aggregates.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Don't use is_infinite() where isinf() will do.