| 2043 | namespace { |
| 2044 | |
| 2045 | Status ExportStreamSchema(const std::shared_ptr<RecordBatchReader>& src, |
| 2046 | struct ArrowSchema* out_schema) { |
| 2047 | return ExportSchema(*src->schema(), out_schema); |
| 2048 | } |
| 2049 | |
| 2050 | Status ExportStreamSchema(const std::shared_ptr<ChunkedArray>& src, |
| 2051 | struct ArrowSchema* out_schema) { |
no test coverage detected