(self, path, metadata)
| 138 | return pa.BufferReader(data) |
| 139 | |
| 140 | def open_output_stream(self, path, metadata): |
| 141 | if "notfound" in path: |
| 142 | raise FileNotFoundError(path) |
| 143 | return pa.BufferOutputStream() |
| 144 | |
| 145 | def open_append_stream(self, path, metadata): |
| 146 | if "notfound" in path: |
no test coverage detected