public CompressedInputStream(Connection conn, InputStream streamFromServer) {
this.traceProtocol = ((ConnectionPropertiesImpl)conn).traceProtocol;
try {
this.log = conn.getLog();
} catch (SQLException e) {
this.log = new NullLogger(null);
}
this.in = streamFromServer;
this.inflater = new Inflater();
}