Github user paul-rogers commented on a diff in the pull request:
https://github.com/apache/drill/pull/1125#discussion_r169859837
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/record/VectorInitializer.java
---
@@ -97,7 +97,7 @@ public void allocateBatch(VectorAccessible va, int
recordCount) {
}
}
- private void allocateVector(ValueVector vector, String prefix, int
recordCount) {
+ public void allocateVector(ValueVector vector, String prefix, int
recordCount) {
--- End diff --
Note the error in the member variable in this class:
```
private Map<String, AllocationHint> hints = new HashMap<>();
```
Should be a case insensitive map.
---