Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyiceberg/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -1697,10 +1697,10 @@ def _(file_type: BinaryType, read_type: IcebergType) -> IcebergType:
@promote.register(DecimalType)
def _(file_type: DecimalType, read_type: IcebergType) -> IcebergType:
if isinstance(read_type, DecimalType):
if file_type.precision <= read_type.precision and file_type.scale == file_type.scale:
if file_type.precision <= read_type.precision and file_type.scale == read_type.scale:
return read_type
else:
raise ResolveError(f"Cannot reduce precision from {file_type} to {read_type}")
raise ResolveError(f"Cannot promote {file_type} to {read_type}")
else:
raise ResolveError(f"Cannot promote an decimal to {read_type}")

Expand Down
11 changes: 10 additions & 1 deletion tests/avro/test_resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,16 @@ def test_resolve_decimal_to_decimal_reduce_precision() -> None:
with pytest.raises(ResolveError) as exc_info:
_ = resolve_reader(DecimalType(19, 25), DecimalType(10, 25)) == DecimalReader(22, 25)

assert "Cannot reduce precision from decimal(19, 25) to decimal(10, 25)" in str(exc_info.value)
assert "Cannot promote decimal(19, 25) to decimal(10, 25)" in str(exc_info.value)


def test_resolve_decimal_to_decimal_change_scale() -> None:
# Changing the scale is not a valid promotion, even when the precision widens.
# Allowing it would reinterpret the file's unscaled integers at the wrong scale.
with pytest.raises(ResolveError) as exc_info:
_ = resolve_reader(DecimalType(9, 2), DecimalType(18, 4))

assert "Cannot promote decimal(9, 2) to decimal(18, 4)" in str(exc_info.value)


def test_column_assignment() -> None:
Expand Down
16 changes: 15 additions & 1 deletion tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
DoubleType(),
DecimalType(10, 2),
DecimalType(100, 2),
DecimalType(10, 4),
StringType(),
DateType(),
TimeType(),
Expand Down Expand Up @@ -878,7 +879,7 @@ def should_promote(file_type: IcebergType, read_type: IcebergType) -> bool:
if isinstance(file_type, BinaryType) and isinstance(read_type, StringType):
return True
if isinstance(file_type, DecimalType) and isinstance(read_type, DecimalType):
return file_type.precision <= read_type.precision and file_type.scale == file_type.scale
return file_type.precision <= read_type.precision and file_type.scale == read_type.scale
if isinstance(file_type, FixedType) and isinstance(read_type, UUIDType) and len(file_type) == 16:
return True
return False
Expand Down Expand Up @@ -945,6 +946,19 @@ def test_promotion(file_type: IcebergType, read_type: IcebergType) -> None:
promote(file_type, read_type)


def test_decimal_promotion() -> None:
# Widening precision while keeping the scale fixed is allowed.
assert promote(DecimalType(9, 2), DecimalType(18, 2)) == DecimalType(18, 2)
# Equal precision and scale resolves to the read type.
assert promote(DecimalType(9, 2), DecimalType(9, 2)) == DecimalType(9, 2)
# Changing the scale is never allowed, even when the precision widens.
with pytest.raises(ResolveError):
promote(DecimalType(9, 2), DecimalType(18, 4))
# Reducing the precision is not allowed.
with pytest.raises(ResolveError):
promote(DecimalType(18, 2), DecimalType(9, 2))


def test_unknown_type_promotion_to_primitive() -> None:
"""Test that UnknownType can be promoted to primitive types (V3+ behavior)"""
unknown_type = UnknownType()
Expand Down