Skip to content

Commit

Permalink
Update pyiceberg/table/__init__.py
Browse files Browse the repository at this point in the history
Co-authored-by: Fokko Driesprong <[email protected]>
  • Loading branch information
kevinjqliu and Fokko authored Jul 8, 2024
1 parent 66dc30f commit e87a59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiceberg/table/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _check_schema_compatible(table_schema: Schema, other_schema: "pa.Schema") ->
Check if the `table_schema` is compatible with `other_schema` in terms of the Iceberg Schema representation.
The schemas are compatible if:
- All fields in `other_schema` are present in `table_schema`. (other_schema <= table_schema)
- All fields in `other_schema` are present in `table_schema`. (`other_schema table_schema`)
- All required fields in `table_schema` are present in `other_schema`.
Raises:
Expand Down

0 comments on commit e87a59a

Please sign in to comment.