Github user jinfengni commented on a diff in the pull request:

    https://github.com/apache/drill/pull/704#discussion_r109051237
  
    --- Diff: exec/vector/src/main/codegen/templates/FixedValueVectors.java ---
    @@ -281,6 +282,11 @@ public void copyFromSafe(int fromIndex, int thisIndex, 
${minor.class}Vector from
         copyFrom(fromIndex, thisIndex, from);
       }
     
    +  @Override
    +  public void copyEntry(int toIndex, ValueVector from, int fromIndex) {
    +    ((${minor.class}Vector) from).data.getBytes(fromIndex * ${type.width}, 
data, toIndex * ${type.width}, ${type.width});
    --- End diff --
    
    What if the dest value vector does not have enough big DrillBuf?  toIndex 
>= getValueCapacity() ? 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to