domoritz commented on PR #35780:
URL: https://github.com/apache/arrow/pull/35780#issuecomment-1839808240

   Is it actually an issue that chunks have different lengths? Seems to work 
fine here
   
   ```js
   const b1 = makeBuilder({ type: new Int32 });
   const b2 = makeBuilder({ type: new Int32 });
   
   const d1 = [] as Data[];
   const d2 = [] as Data[];
   
   b1.append(1);
   b1.append(2);
   d1.push(b1.flush());
   b1.append(3);
   d1.push(b1.flush());
   
   b2.append(4);
   d2.push(b2.flush());
   b2.append(5);
   b2.append(6);
   d2.push(b2.flush());
   
   const v1 = new Vector(d1);
   const v2 = new Vector(d2);
   
   const table = new Table({ v1, v2 });
   console.log(table.toArray());
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to