pkhetrapal opened a new issue, #6979:
URL: https://github.com/apache/iceberg/issues/6979
### Query engine
Pyspark
### Question
I am unable to write to a struct column if there is a new field added to it.
Would I have to update the schema of the struct field or can I bypass the
compatibility check? In the below example the order also changes.
I am using aws glue catalog to manage the schema.
Existing schema for the struct column:
```
|-- home: struct (nullable = true)
|-- city: string (nullable = true)
|-- country: string (nullable = true)
|-- state: string (nullable = true)
```
New schema:
```
|-- home: struct (nullable = true)
|-- phone: string (nullable = true)
|-- city: string (nullable = true)
|-- country: string (nullable = true)
|-- state: string (nullable = true)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]