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:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user