(data: str)
| 351 | v: str |
| 352 | |
| 353 | def write_data(data: str): |
| 354 | write_csv(input_path, data) |
| 355 | G.clear() |
| 356 | table = pw.io.csv.read(input_path, schema=InputSchema, mode="static") |
| 357 | pw.io.deltalake.write(table, output_path) |
| 358 | run_all() |
| 359 | |
| 360 | def check_entries_count(start_from_timestamp_ms: int, expected_entries: int): |
| 361 | G.clear() |
no test coverage detected