| 67 | |
| 68 | |
| 69 | class TableStreamWrapper: |
| 70 | def __init__(self, table): |
| 71 | self.table = table |
| 72 | |
| 73 | def __arrow_c_stream__(self, requested_schema=None): |
| 74 | return self.table.__arrow_c_stream__(requested_schema) |
| 75 | |
| 76 | |
| 77 | def _generate_data(n): |
no outgoing calls