Fokko commented on issue #78:
URL: https://github.com/apache/iceberg-python/issues/78#issuecomment-1770729964
@mobley-trent @gkaretka Thanks for reaching out here. The tables are not
created by default, but I think that might be the wrong behaviour since you
both expected them to be created automatically.
To get things working on your end, you can run:
```python
catalog = load_catalog(
"demo",
**{
"type": "sql",
"uri": "postgresql+psycopg2://[username]:[passwd]@localhost/demo"
}
)
catalog.create_tables()
```
--
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]