1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

Print relation name before vacuum, results after vacuum.

This commit is contained in:
Bruce Momjian
1998-07-12 04:37:55 +00:00
parent fdcab1dbcb
commit 2a8996f631
3 changed files with 4677 additions and 4697 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.28 1998/06/27 13:24:20 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.29 1998/07/12 04:37:55 momjian Exp $
*
* NOTES
*
@@ -156,8 +156,13 @@ shmem_exit(int code)
* and so we return immediately to avoid recursion.
* ----------------
*/
if (shmem_exit_inprogress)
if (shmem_exit_inprogress > 9)
exit(-1);
else
{
shmem_exit_inprogress++;
return;
}
shmem_exit_inprogress = 1;