This is an automated email from the ASF dual-hosted git repository.

boaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git

commit 140d09e69b65ac2cb1bed09a37fa5861d39a99b3
Author: Padma Penumarthy <[email protected]>
AuthorDate: Mon Jun 25 21:27:48 2018 -0700

    DRILL-6539: Record count not set for this vector container error
    
    closes #1340
---
 .../org/apache/drill/exec/physical/impl/common/HashTableTemplate.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/common/HashTableTemplate.java
 
b/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/common/HashTableTemplate.java
index 6c9a398..da916f3 100644
--- 
a/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/common/HashTableTemplate.java
+++ 
b/exec/java-exec/src/main/java/org/apache/drill/exec/physical/impl/common/HashTableTemplate.java
@@ -365,6 +365,7 @@ public abstract class HashTableTemplate implements 
HashTable {
         ValueVector vv = vw.getValueVector();
         vv.getMutator().setValueCount(maxOccupiedIdx + 1);
       }
+      htContainer.setRecordCount(maxOccupiedIdx+1);
     }
 
     private void dump(int idx) {

Reply via email to