pgsql: Allow transactions that don't write WAL to commit asynchronously - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: Allow transactions that don't write WAL to commit asynchronously
Date
Msg-id E1PUk70-0004QY-Bq@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Allow transactions that don't write WAL to commit asynchronously.

This case can arise if a transaction has written data, but only to
temporary tables.  Loss of the commit record in case of a crash won't
matter, because the temporary tables will be lost anyway.

Reviewed by Heikki Linnakangas and Simon Riggs.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=f6a0863e3cb72763490ceca2c558d5ef2dddd5f2

Modified Files
--------------
src/backend/access/transam/xact.c |   33 +++++++++++++++++++++++----------
1 files changed, 23 insertions(+), 10 deletions(-)


pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: pgsql: Allow bidirectional copy messages in streaming replication mode.
Next
From: Robert Haas
Date:
Subject: pgsql: Work around unfortunate getppid() behavior on BSD-ish systems.