Hi,
I'm reviewing this project and spoted that PgBinaryWriter's buffer is declared as buffer = new DataOutputStream(new BufferedOutputStream(out));. I think we can remove 'BufferedOutputStream' as passed stream is 'PGCopyOutputStream' which itself is buffered. It could increase performace.
Hi,
I'm reviewing this project and spoted that PgBinaryWriter's buffer is declared as
buffer = new DataOutputStream(new BufferedOutputStream(out));. I think we can remove 'BufferedOutputStream' as passed stream is 'PGCopyOutputStream' which itself is buffered. It could increase performace.