diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-07-02 18:09:28 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-07-02 18:09:28 +0000 |
| commit | 954e466c27ad6e6933b99217749e7cb078243fc1 (patch) | |
| tree | b5fbaff9c9de1b0bd48320f5349b75898afefda3 /src/backend/postmaster/postmaster.c | |
| parent | d20abcd8c5bed273797b948e1475bbf5206eb38d (diff) | |
| download | postgresql-954e466c27ad6e6933b99217749e7cb078243fc1.tar.gz | |
Fix for removal of temp tables if last transaction was aborted.
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
| -rw-r--r-- | src/backend/postmaster/postmaster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 7a88385e49..14e4235d84 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.106 1999/06/04 21:14:46 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.107 1999/07/02 18:09:27 momjian Exp $ * * NOTES * @@ -1483,8 +1483,8 @@ DoBackend(Port *port) * Let's clean up ourselves as the postmaster child */ - on_exit_reset(); /* we don't want the postmaster's - * proc_exit() handlers */ + /* We don't want the postmaster's proc_exit() handlers */ + on_exit_reset(); /* ---------------- * register signal handlers. |
