autovacuum.c update - Mailing list pgsql-committers

From Alvaro Herrera
Subject autovacuum.c update
Date
Msg-id 20071024191554.GL6559@alvh.no-ip.org
Whole thread Raw
List pgsql-committers
Hi,

I just updated autovacuum.c with some minor changes and looks like I
managed to involuntarily abort the email to pgsql-committers.

The changeset is here
http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/autovacuum.c.diff?r1=1.61;r2=1.62

The commit message was:

Minor changes to autovacuum worker: change error handling so that it continues
with the next table on schedule instead of exiting, in all cases instead of
just on query cancel.

Add a errcontext() line indicating the activity of the worker to the error
message when it is cancelled.

Change the WorkerInfo struct to contain a pointer to the worker's PGPROC
instead of just the PID.

Add forgotten post-auth delays, per Simon Riggs.  Also to autovac launcher.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

pgsql-committers by date:

Previous
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Fix UPDATE/DELETE WHERE CURRENT OF to support repeated update and
Next
From: alvherre@postgresql.org (Alvaro Herrera)
Date:
Subject: pgsql: Minor changes to autovacuum worker: change error handling so that