mirror of
https://github.com/langchain-ai/delta-rs.git
synced 2026-07-18 12:25:33 -04:00
92e75bb217
Signed-off-by: Ion Koutsouris <15728914+ion-elgreco@users.noreply.github.com>
159 lines
4.7 KiB
Python
159 lines
4.7 KiB
Python
import pathlib
|
|
from typing import TYPE_CHECKING
|
|
|
|
import pytest
|
|
from arro3.core import Table
|
|
|
|
from deltalake import CommitProperties, DeltaTable, Field, Schema, write_deltalake
|
|
from deltalake.exceptions import DeltaError
|
|
from deltalake.schema import PrimitiveType
|
|
|
|
if TYPE_CHECKING:
|
|
pass
|
|
|
|
schema = Schema(
|
|
fields=[
|
|
Field("id", type=PrimitiveType("string"), nullable=True),
|
|
Field("price", type=PrimitiveType("integer"), nullable=True),
|
|
Field("timestamp", type=PrimitiveType("timestamp_ntz"), nullable=True),
|
|
Field("deleted", type=PrimitiveType("boolean"), nullable=True),
|
|
]
|
|
)
|
|
|
|
|
|
def test_create_roundtrip_metadata(
|
|
tmp_path: pathlib.Path,
|
|
):
|
|
dt = DeltaTable.create(
|
|
tmp_path,
|
|
schema,
|
|
name="test_name",
|
|
description="test_desc",
|
|
configuration={
|
|
"delta.appendOnly": "true",
|
|
"delta.logRetentionDuration": "interval 2 days",
|
|
},
|
|
commit_properties=CommitProperties(custom_metadata={"userName": "John Doe"}),
|
|
)
|
|
|
|
metadata = dt.metadata()
|
|
|
|
assert metadata.name == "test_name"
|
|
assert metadata.description == "test_desc"
|
|
assert metadata.configuration == {
|
|
"delta.appendOnly": "true",
|
|
"delta.logRetentionDuration": "interval 2 days",
|
|
}
|
|
assert dt.history()[0]["userName"] == "John Doe"
|
|
|
|
assert {*dt.protocol().writer_features} == {"appendOnly", "timestampNtz"} # type: ignore
|
|
|
|
|
|
def test_create_modes(tmp_path: pathlib.Path):
|
|
dt = DeltaTable.create(tmp_path, schema, mode="error")
|
|
last_action = dt.history(1)[0]
|
|
|
|
with pytest.raises(DeltaError):
|
|
dt = DeltaTable.create(tmp_path, schema, mode="error")
|
|
|
|
assert last_action["operation"] == "CREATE TABLE"
|
|
with pytest.raises(DeltaError):
|
|
dt = DeltaTable.create(tmp_path, schema, mode="append")
|
|
|
|
dt = DeltaTable.create(tmp_path, schema, mode="ignore")
|
|
assert dt.version() == 0
|
|
|
|
dt = DeltaTable.create(tmp_path, schema, mode="overwrite")
|
|
assert dt.version() == 1
|
|
|
|
last_action = dt.history(1)[0]
|
|
|
|
assert last_action["operation"] == "CREATE OR REPLACE TABLE"
|
|
|
|
|
|
def test_create_schema(tmp_path: pathlib.Path):
|
|
dt = DeltaTable.create(
|
|
tmp_path,
|
|
schema,
|
|
)
|
|
|
|
assert dt.schema() == schema
|
|
|
|
|
|
@pytest.mark.skip(reason="not implemented")
|
|
def test_create_with_deletion_vectors_enabled(tmp_path: pathlib.Path):
|
|
"""append only is set to false so shouldn't be converted to a feature"""
|
|
dt = DeltaTable.create(
|
|
tmp_path,
|
|
schema,
|
|
name="test_name",
|
|
description="test_desc",
|
|
configuration={
|
|
"delta.appendOnly": "false",
|
|
"delta.enableDeletionVectors": "true",
|
|
},
|
|
commit_properties=CommitProperties(custom_metadata={"userName": "John Doe"}),
|
|
)
|
|
|
|
metadata = dt.metadata()
|
|
protocol = dt.protocol()
|
|
assert metadata.name == "test_name"
|
|
assert metadata.description == "test_desc"
|
|
assert metadata.configuration == {
|
|
"delta.appendOnly": "false",
|
|
"delta.enableDeletionVectors": "true",
|
|
}
|
|
assert protocol.min_reader_version == 3
|
|
assert protocol.min_writer_version == 7
|
|
assert protocol.writer_features == ["deletionVectors"] # type: ignore
|
|
assert protocol.reader_features == ["deletionVectors"]
|
|
assert dt.history()[0]["userName"] == "John Doe"
|
|
|
|
|
|
def test_create_higher_protocol_versions(tmp_path: pathlib.Path):
|
|
schema = Schema(
|
|
fields=[
|
|
Field("id", type=PrimitiveType("string"), nullable=True),
|
|
Field("price", type=PrimitiveType("integer"), nullable=True),
|
|
Field("deleted", type=PrimitiveType("boolean"), nullable=True),
|
|
]
|
|
)
|
|
|
|
dt = DeltaTable.create(
|
|
tmp_path,
|
|
schema,
|
|
name="test_name",
|
|
description="test_desc",
|
|
configuration={
|
|
"delta.appendOnly": "false",
|
|
"delta.minReaderVersion": "1",
|
|
"delta.minWriterVersion": "5",
|
|
},
|
|
commit_properties=CommitProperties(custom_metadata={"userName": "John Doe"}),
|
|
)
|
|
|
|
metadata = dt.metadata()
|
|
protocol = dt.protocol()
|
|
assert metadata.name == "test_name"
|
|
assert metadata.description == "test_desc"
|
|
assert metadata.configuration == {
|
|
"delta.appendOnly": "false",
|
|
"delta.minReaderVersion": "1",
|
|
"delta.minWriterVersion": "5",
|
|
}
|
|
assert protocol.min_reader_version == 1
|
|
assert protocol.min_writer_version == 5
|
|
assert dt.history()[0]["userName"] == "John Doe"
|
|
|
|
|
|
def test_create_or_replace_existing_table(tmp_path: pathlib.Path, sample_table: Table):
|
|
write_deltalake(table_or_uri=tmp_path, data=sample_table)
|
|
dt = DeltaTable.create(
|
|
tmp_path,
|
|
schema,
|
|
partition_by=["id"],
|
|
mode="overwrite",
|
|
)
|
|
|
|
assert dt.files() == []
|