autovacuum.c update

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: pgsql-committers(at)postgresql(dot)org
Subject: autovacuum.c update
Date: 2007-10-24 19:15:54
Message-ID: 20071024191554.GL6559@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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.

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2007-10-24 20:11:00 pgsql: Danish_Danmark -> Danish_Denmark
Previous Message Alvaro Herrera 2007-10-24 19:08:26 pgsql: Minor changes to autovacuum worker: change error handling so that