Github user paul-rogers commented on a diff in the pull request:
https://github.com/apache/drill/pull/1060#discussion_r158183519
--- 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 --
Most common Drill convention is to include a space after punctuation.
---