twuebi commented on issue #595:
URL: https://github.com/apache/iceberg-go/issues/595#issuecomment-3385709571
I just tested this with pyiceberg and this works:
```py
import pandas as pd
import pyarrow.parquet as pq
import pyarrow as pa
test_table = ("my_pyiceberg_namespace", "my_table8")
pam = pa.MapArray.from_arrays([0,1,3], ["a", "b", "c"], ["a", "b", "c"])
pa_df = pa.Table.from_pydict({"dicts": pam})
table = catalog.create_table(
test_table,
schema=pa_df.schema,
)
table.append(pa_df)
```
sounds like a bug
--
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]