(paths, columns=None, use_threads=True, **kwargs)
| 660 | (dirpath / '_SUCCESS.crc').touch() |
| 661 | |
| 662 | def read_multiple_files(paths, columns=None, use_threads=True, **kwargs): |
| 663 | dataset = pq.ParquetDataset(paths, **kwargs) |
| 664 | return dataset.read(columns=columns, use_threads=use_threads) |
| 665 | |
| 666 | result = read_multiple_files(paths) |
| 667 | expected = pa.concat_tables(test_data) |
no test coverage detected