piyushdubey commented on issue #40655:
URL: https://github.com/apache/arrow/issues/40655#issuecomment-2005643124

   File was creating using code similar to below--
   
   - First created a list of columns
   - Created a RecordBatch
   - Wrote this to a Stream.
   
   ```
   IList<Column> column = DummyMethodToCreateColumnList();
   
   RecordBatch recordBatch = ArrowConverter.Convert(columnList);
   var writer = new ArrowStreamWriter(responseStream, recordBatch.Schema, 
leaveOpen: true);
   await writer.WriteRecordBatchAsync(recordBatch, cancellationToken);
   await writer.WriteEndAsync(cancellationToken);
   
   responseStream.Position = 0;
   ```


-- 
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