Skip to content

Commit 7a9be0e

Browse files
committed
Documentation fixes
1 parent a184b3b commit 7a9be0e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

elt-common/src/elt_common/dlt_destinations/pyiceberg/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def _raw_capabilities(self) -> DestinationCapabilitiesContext:
2323
caps.supported_table_formats = ["iceberg"]
2424
caps.type_mapper = PyIcebergTypeMapper
2525
caps.has_case_sensitive_identifiers = True
26-
# v1 & v2 of Iceberg on support timestamps at microsecond resolution
26+
# v1 & v2 of Iceberg only supports timestamps at microsecond resolution
2727
caps.timestamp_precision = 6
2828

2929
caps.max_identifier_length = 255

elt-common/src/elt_common/dlt_destinations/pyiceberg/pyiceberg_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def pyiceberg_adapter(
4242
4343
Examples:
4444
>>> data = [{"name": "Marcel", "department": "Engineering", "date_hired": "2024-01-30"}]
45-
>>> pyiceberg_adapter(data, partition=["department", PartitionTrBuilder.year("date_hired"), PartitionTrBuilder.bucket(8, "name")])
45+
>>> pyiceberg_adapter(data, partition=["department", PartitionTrBuilder.year("date_hired")])
4646
[DltResource with hints applied]
4747
"""
4848
resource = get_resource_for_adapter(data)

0 commit comments

Comments
 (0)