Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e84f8a4

Browse files
committed
Fix for postgres started from command line, sends 'Z' protocol
flag.
1 parent 7bcc2da commit e84f8a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/tcop/postgres.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.69 1998/05/19 18:05:48 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.70 1998/05/26 03:20:00 momjian Exp $
1111
*
1212
* NOTES
1313
* this is the "main" module of the postgres backend and
@@ -1328,7 +1328,7 @@ PostgresMain(int argc, char *argv[])
13281328
if (IsUnderPostmaster == false)
13291329
{
13301330
puts("\nPOSTGRES backend interactive interface");
1331-
puts("$Revision: 1.69 $ $Date: 1998/05/19 18:05:48 $");
1331+
puts("$Revision: 1.70 $ $Date: 1998/05/26 03:20:00 $");
13321332
}
13331333

13341334
/* ----------------
@@ -1346,7 +1346,7 @@ PostgresMain(int argc, char *argv[])
13461346
* (0) tell the frontend we're ready for a new query.
13471347
* ----------------
13481348
*/
1349-
ReadyForQuery(Remote);
1349+
ReadyForQuery(whereToSendOutput);
13501350

13511351
/* ----------------
13521352
* (1) read a command.

0 commit comments

Comments
 (0)