(table: MemoryMappedTable)
| 67 | |
| 68 | |
| 69 | def assert_deepcopy_without_bringing_data_in_memory(table: MemoryMappedTable): |
| 70 | with assert_arrow_memory_doesnt_increase(): |
| 71 | copied_table = copy.deepcopy(table) |
| 72 | assert isinstance(copied_table, MemoryMappedTable) |
| 73 | assert copied_table.table == table.table |
| 74 | |
| 75 | |
| 76 | def assert_deepcopy_does_bring_data_in_memory(table: MemoryMappedTable): |
no test coverage detected