(self, stream_path, file_path)
| 94 | return self._run(arrow_path, json_path, 'JSON_TO_ARROW') |
| 95 | |
| 96 | def stream_to_file(self, stream_path, file_path): |
| 97 | cmd = [_STREAM_TO_FILE, '<', stream_path, '>', file_path] |
| 98 | self.run_shell_command(cmd) |
| 99 | |
| 100 | def file_to_stream(self, file_path, stream_path): |
| 101 | cmd = [_FILE_TO_STREAM, file_path, '>', stream_path] |
nothing calls this directly
no test coverage detected