Creates new file id which is globally unique within table_name scope
()
| 20 | |
| 21 | |
| 22 | def new_file_id() -> str: |
| 23 | """Creates new file id which is globally unique within table_name scope""" |
| 24 | return uniq_id(5) |
| 25 | |
| 26 | |
| 27 | class BufferedDataWriter(Generic[TWriter]): |
no test coverage detected