AlenkaF commented on issue #34397:
URL: https://github.com/apache/arrow/issues/34397#issuecomment-1450058994
You will need to pass `schema` to `from_pydict()` when constructing pyarrow
Table like so:
```python
>>> pa.Table.from_pydict({'field': [None, None]}, schema=schema)
pyarrow.Table
field: int64
----
field: [[null,null]]
```
--
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]