Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
22 changes: 21 additions & 1 deletion pyiceberg/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@

INITIAL_SCHEMA_ID = 0

FIELD_ID_PROP = "field-id"
ICEBERG_FIELD_NAME_PROP = "iceberg-field-name"


class Schema(IcebergBaseModel):
"""A table Schema.
Expand Down Expand Up @@ -1356,6 +1359,21 @@ def primitive(self, primitive: PrimitiveType) -> PrimitiveType:

# Implementation copied from Apache Iceberg repo.
def make_compatible_name(name: str) -> str:
"""Make a field name compatible with Avro specification.

This function sanitizes field names to comply with Avro naming rules:
- Names must start with [A-Za-z_]
- Subsequent characters must be [A-Za-z0-9_]

Invalid characters are replaced with _xHHHH where HHHH is the hex code.
Names starting with digits get a leading underscore.

Args:
name: The original field name

Returns:
A sanitized name that complies with Avro specification
"""
if not _valid_avro_name(name):
return _sanitize_name(name)
return name
Expand Down Expand Up @@ -1391,7 +1409,9 @@ def _sanitize_name(name: str) -> str:


def _sanitize_char(character: str) -> str:
return "_" + character if character.isdigit() else "_x" + hex(ord(character))[2:].upper()
if character.isdigit():
return "_" + character
return "_x" + hex(ord(character))[2:].upper()
Comment thread
kris-gaudel marked this conversation as resolved.


def sanitize_column_names(schema: Schema) -> Schema:
Expand Down
29 changes: 21 additions & 8 deletions pyiceberg/utils/schema_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,14 @@
Union,
)

from pyiceberg.schema import Schema, SchemaVisitorPerPrimitiveType, visit
from pyiceberg.schema import (
FIELD_ID_PROP,
ICEBERG_FIELD_NAME_PROP,
Schema,
SchemaVisitorPerPrimitiveType,
make_compatible_name,
visit,
)
from pyiceberg.types import (
BinaryType,
BooleanType,
Expand Down Expand Up @@ -225,13 +232,13 @@ def _convert_field(self, field: Dict[str, Any]) -> NestedField:
Returns:
The Iceberg equivalent field.
"""
if "field-id" not in field:
raise ValueError(f"Cannot convert field, missing field-id: {field}")
if FIELD_ID_PROP not in field:
raise ValueError(f"Cannot convert field, missing {FIELD_ID_PROP}: {field}")

plain_type, required = self._resolve_union(field["type"])

return NestedField(
field_id=field["field-id"],
field_id=field[FIELD_ID_PROP],
name=field["name"],
field_type=self._convert_schema(plain_type),
required=required,
Expand Down Expand Up @@ -524,12 +531,18 @@ def field(self, field: NestedField, field_result: AvroType) -> AvroType:
if isinstance(field_result, dict) and field_result.get("type") == "record":
field_result["name"] = f"r{field.field_id}"

orig_field_name = field.name
field_name = make_compatible_name(orig_field_name)

result = {
"name": field.name,
"field-id": field.field_id,
"name": field_name,
FIELD_ID_PROP: field.field_id,
"type": field_result if field.required else ["null", field_result],
}

if orig_field_name != field_name:
result[ICEBERG_FIELD_NAME_PROP] = orig_field_name
Comment thread
kris-gaudel marked this conversation as resolved.
Outdated

if field.write_default is not None:
result["default"] = field.write_default
elif field.optional:
Expand Down Expand Up @@ -564,8 +577,8 @@ def map(self, map_type: MapType, key_result: AvroType, value_result: AvroType) -
"type": "record",
"name": f"k{self.last_map_key_field_id}_v{self.last_map_value_field_id}",
"fields": [
{"name": "key", "type": key_result, "field-id": self.last_map_key_field_id},
{"name": "value", "type": value_result, "field-id": self.last_map_value_field_id},
{"name": "key", "type": key_result, FIELD_ID_PROP: self.last_map_key_field_id},
{"name": "value", "type": value_result, FIELD_ID_PROP: self.last_map_value_field_id},
],
},
"logicalType": "map",
Expand Down
43 changes: 43 additions & 0 deletions tests/integration/test_writes/test_writes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1201,6 +1201,49 @@ def test_sanitize_character_partitioned(catalog: Catalog) -> None:
assert len(tbl.scan().to_arrow()) == 22


@pytest.mark.integration
@pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog")])
def test_sanitize_character_partitioned_avro_bug(catalog: Catalog) -> None:
table_name = "default.test_table_partitioned_sanitized_character_avro"
try:
catalog.drop_table(table_name)
except NoSuchTableError:
pass

schema = Schema(
NestedField(id=1, name="😎", field_type=StringType(), required=False),
)

partition_spec = PartitionSpec(
PartitionField(
source_id=1,
field_id=1001,
transform=IdentityTransform(),
name="😎",
)
)

tbl = _create_table(
session_catalog=catalog,
identifier=table_name,
schema=schema,
partition_spec=partition_spec,
data=[
pa.Table.from_arrays(
[pa.array([str(i) for i in range(22)])], schema=pa.schema([pa.field("😎", pa.string(), nullable=False)])
)
],
)

assert len(tbl.scan().to_arrow()) == 22

con = tbl.scan().to_duckdb("table_test_debug")
result = con.query("SELECT * FROM table_test_debug").fetchall()
assert len(result) == 22

assert con.query("SHOW table_test_debug").fetchone() == ("😎", "VARCHAR", "YES", None, None, None)
Comment thread
kris-gaudel marked this conversation as resolved.
Outdated


@pytest.mark.integration
@pytest.mark.parametrize("format_version", [1, 2])
def test_table_write_subset_of_schema(session_catalog: Catalog, arrow_table_with_null: pa.Table, format_version: int) -> None:
Expand Down
Loading