Fokko opened a new issue, #1851:
URL: https://github.com/apache/iceberg-python/issues/1851

   ### Feature Request / Improvement
   
   Right now we expect to pass in the actual string:
   
   ```python
   schema = Schema(
       NestedField(1, 'foo', StringType())
   )
   ```
   
   I think it would be nice to also allow strings:
   
   ```python
   schema = Schema(
       NestedField(1, 'foo', 'string')
   )
   ```
   
   At the same time, we should reject complex types (`list/map/struct`).


-- 
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: issues-unsubscr...@iceberg.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to