Github user sachouche commented on a diff in the pull request:
https://github.com/apache/drill/pull/1060#discussion_r161045748
--- Diff: exec/vector/src/main/codegen/templates/VariableLengthVectors.java
---
@@ -386,7 +391,7 @@ public void reAlloc() {
throw new OversizedAllocationException("Unable to expand the buffer.
Max allowed buffer size is reached.");
}
- logger.trace("Reallocating VarChar, new size {}", newAllocationSize);
+ logger.trace("Reallocating VarChar, new size {}",newAllocationSize);
--- End diff --
Fixed.
---