Close the ORC file
(self)
| 289 | self.writer.write(table) |
| 290 | |
| 291 | def close(self): |
| 292 | """ |
| 293 | Close the ORC file |
| 294 | """ |
| 295 | if self.is_open: |
| 296 | self.writer.close() |
| 297 | self.is_open = False |
| 298 | |
| 299 | |
| 300 | def read_table(source, columns=None, filesystem=None): |