diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/largeobject/LargeObject.java')
| -rw-r--r-- | src/interfaces/jdbc/org/postgresql/largeobject/LargeObject.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/largeobject/LargeObject.java b/src/interfaces/jdbc/org/postgresql/largeobject/LargeObject.java index 316716e42d..5455e8e769 100644 --- a/src/interfaces/jdbc/org/postgresql/largeobject/LargeObject.java +++ b/src/interfaces/jdbc/org/postgresql/largeobject/LargeObject.java @@ -304,7 +304,7 @@ public class LargeObject */ public InputStream getInputStream() throws SQLException { - return new BlobInputStream(this); + return new BlobInputStream(this, 4096); } /* @@ -318,7 +318,7 @@ public class LargeObject public OutputStream getOutputStream() throws SQLException { if (os == null) - os = new BlobOutputStream(this); + os = new BlobOutputStream(this, 4096); return os; } |
