Fixed improper message length for the connection termination message 'X' when

using the V3 protocol.

 Modified Files:
 	jdbc1/AbstractJdbc1Connection.java
REL7_4_STABLE
Barry Lind 23 years ago
parent d3fe721a40
commit 5cad6813fb
  1. 4
      src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java

@ -9,7 +9,7 @@
* Copyright (c) 2003, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Connection.java,v 1.22 2003/08/11 20:54:55 barry Exp $
* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Connection.java,v 1.23 2003/08/15 18:36:58 barry Exp $
*
*-------------------------------------------------------------------------
*/
@ -1121,7 +1121,7 @@ public abstract class AbstractJdbc1Connection implements BaseConnection
try
{
pgStream.SendChar('X');
pgStream.SendInteger(0,4);
pgStream.SendInteger(4,4);
pgStream.flush();
pgStream.close();
}

Loading…
Cancel
Save