pgsql: Minor changes to autovacuum worker: change error handling so that

From: alvherre(at)postgresql(dot)org (Alvaro Herrera)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Minor changes to autovacuum worker: change error handling so that
Date: 2007-10-24 19:08:26
Message-ID: 20071024190826.09DB7754229@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
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.

Modified Files:
--------------
pgsql/src/backend/postmaster:
autovacuum.c (r1.61 -> r1.62)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/autovacuum.c?r1=1.61&r2=1.62)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2007-10-24 19:15:54 autovacuum.c update
Previous Message Tom Lane 2007-10-24 18:37:09 pgsql: Fix UPDATE/DELETE WHERE CURRENT OF to support repeated update and