joshuanapoli commented on issue #14075:
URL: https://github.com/apache/arrow/issues/14075#issuecomment-1242318619
We solved this scenario by overriding the RecordBatchWriter _writeSchema as
a no-op:
```
class NoSchemaRecordBatchStreamWriter extends RecordBatchStreamWriter {
protected _writeSchema(schema: Schema<T>) {
return this;
}
}
```
--
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]