| 2038 | namespace { |
| 2039 | |
| 2040 | Status ExportStreamSchema(const std::shared_ptr<RecordBatchReader>& src, |
| 2041 | struct ArrowSchema* out_schema) { |
| 2042 | return ExportSchema(*src->schema(), out_schema); |
| 2043 | } |
| 2044 | |
| 2045 | Status ExportStreamSchema(const std::shared_ptr<ChunkedArray>& src, |
| 2046 | struct ArrowSchema* out_schema) { |
no test coverage detected