|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.44 1997/12/05 01:13:24 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.45 1997/12/23 20:00:06 thomas Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
@@ -456,14 +456,11 @@ process_response_from_backend(FILE *pfin, FILE *pfout, FILE *pfdebug,
|
456 | 456 | if (id==EOF)
|
457 | 457 | {
|
458 | 458 | /* hmm, no response from the backend-end, that's bad */
|
459 |
| -(void)sprintf(reason, |
460 |
| -"PQexec() -- Request was sent to backend, but backend " |
461 |
| -"closed the channel before " |
462 |
| -"responding. This probably means the backend " |
463 |
| -"terminated abnormally before or while processing " |
464 |
| -"the request.\n"); |
465 |
| -conn->status=CONNECTION_BAD;/* No more connection to |
466 |
| - * backend */ |
| 459 | +(void)sprintf(reason,"PQexec() -- Request was sent to backend" |
| 460 | +", but backend closed the channel before responding." |
| 461 | +"\n\tThis probably means the backend terminated abnormally" |
| 462 | +" before or while processing the request.\n"); |
| 463 | +conn->status=CONNECTION_BAD;/* No more connection to backend */ |
467 | 464 | *result_p= (PGresult*)NULL;
|
468 | 465 | done= true;
|
469 | 466 | }
|
|