mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-24 09:26:08 +00:00

### Description Add delta table downstream destination connector Closes https://github.com/Unstructured-IO/unstructured/issues/1415
14 lines
223 B
Python
Executable File
14 lines
223 B
Python
Executable File
from deltalake import DeltaTable
|
|
|
|
|
|
def run_check():
|
|
delta_table = DeltaTable(
|
|
table_uri="/tmp/delta-table-dest",
|
|
)
|
|
|
|
assert len(delta_table.to_pandas()) == 10
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_check()
|