diff options
author | Peter Mount | 1999-05-17 22:43:30 +0000 |
---|---|---|
committer | Peter Mount | 1999-05-17 22:43:30 +0000 |
commit | 3f59cc08316f9aea92823a021c6232b298e00d03 (patch) | |
tree | 3c8a787e2346fce5e4d324dcb5f80c76a145beab /src/interfaces/jdbc/postgresql/PG_Stream.java | |
parent | c2b75c83f341cf06f6594235b40281ec3956538e (diff) |
Minor bug fixes. Replaced DateStyle support with ISO.
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 9002ccda7bd..37870cf52a5 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(); |