Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private int refill() throws IOException {

if (buffer.capacity() < uncompressedSize) {
buffer = ByteBuffer.allocate(uncompressedSize);
LOG.warn("Buffer size is too small, reallocate buffer with size: " + uncompressedSize);
LOG.debug("Buffer size is too small, reallocate buffer with size: {}", uncompressedSize);
}
decompressor.decompress(ByteBuffer.wrap(block), offset, buffer, 0, uncompressedSize);
buffer.position(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public StatementImpl(ConnectionImpl connection) throws SQLException {
this.metrics = null;
this.batch = new ArrayList<>();
this.schema = connection.getSchema();// remember DB name
LOG.info("Statement schema " + schema);
this.maxRows = 0;
}

Expand Down
Loading