diff options
Diffstat (limited to 'src/interfaces/jdbc/postgresql/PG_Stream.java')
-rw-r--r-- | src/interfaces/jdbc/postgresql/PG_Stream.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/interfaces/jdbc/postgresql/PG_Stream.java b/src/interfaces/jdbc/postgresql/PG_Stream.java index 9002ccda7b..37870cf52a 100644 --- a/src/interfaces/jdbc/postgresql/PG_Stream.java +++ b/src/interfaces/jdbc/postgresql/PG_Stream.java @@ -378,6 +378,8 @@ public class PG_Stream */ public void close() throws IOException { + pg_output.write("X\0".getBytes()); + pg_output.flush(); pg_output.close(); pg_input.close(); connection.close(); |