pgsql: Make CREATE/DROP/RENAME DATABASE wait a little bit to see if

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Make CREATE/DROP/RENAME DATABASE wait a little bit to see if
Date: 2007-06-01 19:38:07
Message-ID: 20070601193807.F1E899FC659@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Make CREATE/DROP/RENAME DATABASE wait a little bit to see if other backends
will exit before failing because of conflicting DB usage. Per discussion,
this seems a good idea to help mask the fact that backend exit takes nonzero
time. Remove a couple of thereby-obsoleted sleeps in contrib and PL
regression test sequences.

Modified Files:
--------------
pgsql/contrib:
Makefile (r1.76 -> r1.77)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/Makefile.diff?r1=1.76&r2=1.77)
pgsql/src/backend/commands:
dbcommands.c (r1.194 -> r1.195)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/dbcommands.c.diff?r1=1.194&r2=1.195)
pgsql/src/backend/storage/ipc:
procarray.c (r1.24 -> r1.25)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/ipc/procarray.c.diff?r1=1.24&r2=1.25)
pgsql/src/include/storage:
procarray.h (r1.13 -> r1.14)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/storage/procarray.h.diff?r1=1.13&r2=1.14)
pgsql/src/pl:
Makefile (r1.25 -> r1.26)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/Makefile.diff?r1=1.25&r2=1.26)

Browse pgsql-committers by date

  From Date Subject
Next Message User Pgunittest 2007-06-01 21:35:56 pgunittest - pgUnitTest: New Directory
Previous Message Bruce Momjian 2007-06-01 18:41:55 pgsql: Add URL for: o Research self-referential UPDATEs that