(table: MemoryMappedTable)
| 74 | |
| 75 | |
| 76 | def assert_deepcopy_does_bring_data_in_memory(table: MemoryMappedTable): |
| 77 | with assert_arrow_memory_increases(): |
| 78 | copied_table = copy.deepcopy(table) |
| 79 | assert isinstance(copied_table, MemoryMappedTable) |
| 80 | assert copied_table.table == table.table |
| 81 | |
| 82 | |
| 83 | def assert_pickle_without_bringing_data_in_memory(table: MemoryMappedTable): |
nothing calls this directly
no test coverage detected