diff options
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 54ba0a1fe6f..36fb347de3e 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.423 2004/07/11 00:18:44 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.424 2004/07/17 03:29:00 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -2797,6 +2797,12 @@ PostgresMain(int argc, char *argv[], const char *username) debug_query_string = NULL; /* + * If there's an active portal, mark it as failed + */ + if (ActivePortal) + ActivePortal->status = PORTAL_FAILED; + + /* * Make sure we are in a valid memory context during recovery. * * We use ErrorContext in hopes that it will have some free space |