diff options
author | Dave Cramer <davec@fastcrypt.com> | 2002-03-05 18:01:27 +0000 |
---|---|---|
committer | Dave Cramer <davec@fastcrypt.com> | 2002-03-05 18:01:27 +0000 |
commit | ff2f9b663f73b020cc5f8fa05d848a6f6d33c6ac (patch) | |
tree | 80e4f647bc8ad6a673803c62c9bdf622fe0ba577 /src/interfaces/jdbc/org/postgresql/Connection.java | |
parent | b7cc409f7f5e81628a2c62da15f013ec33714392 (diff) | |
download | postgresql-ff2f9b663f73b020cc5f8fa05d848a6f6d33c6ac.tar.gz |
fixed cancel query bug introduced by patch
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/Connection.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/Connection.java | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/Connection.java b/src/interfaces/jdbc/org/postgresql/Connection.java index 4bdf684a60..af507303dd 100644 --- a/src/interfaces/jdbc/org/postgresql/Connection.java +++ b/src/interfaces/jdbc/org/postgresql/Connection.java @@ -11,7 +11,7 @@ import org.postgresql.util.*; import org.postgresql.core.*; /* - * $Id: Connection.java,v 1.41 2002/02/26 02:15:54 davec Exp $ + * $Id: Connection.java,v 1.42 2002/03/05 18:00:36 davec Exp $ * * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or * JDBC2 versions of the Connection class. @@ -315,16 +315,6 @@ public abstract class Connection switch (beresp) { case 'Z': - - try - { - pg_stream.SendChar('Q'); - pg_stream.SendChar(' '); - pg_stream.SendChar(0); - pg_stream.flush(); - } catch (IOException e) { - throw new PSQLException("postgresql.con.ioerror",e); - } break; case 'E': case 'N': |