| 2151 | // C-compatible callbacks |
| 2152 | |
| 2153 | static int StaticGetSchema(StreamType* stream, struct ArrowSchema* out_schema) { |
| 2154 | ExportedArrayStream self{stream}; |
| 2155 | return self.ToCError(self.GetSchema(out_schema)); |
| 2156 | } |
| 2157 | |
| 2158 | static int StaticGetNext(StreamType* stream, ArrayType* out_array) { |
| 2159 | ExportedArrayStream self{stream}; |