You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/05/27 19:23:12 UTC

[iceberg] branch master updated (399915315 -> f79205243)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


    from 399915315 Python: Add BooleanExpressionVisitor and visit method (#4815)
     add f79205243 Python: Add Catalog abstract base class (#3245) (#4706)

No new revisions were added by this update.

Summary of changes:
 python/spellcheck-dictionary.txt   |   2 +
 python/src/iceberg/catalog/base.py | 247 +++++++++++++++++++++++
 python/src/iceberg/exceptions.py   |  32 +++
 python/src/iceberg/table/base.py   |  34 ++++
 python/tests/catalog/__init__.py   |  16 ++
 python/tests/catalog/test_base.py  | 401 +++++++++++++++++++++++++++++++++++++
 python/tests/conftest.py           |   6 +
 7 files changed, 738 insertions(+)
 create mode 100644 python/src/iceberg/catalog/base.py
 create mode 100644 python/src/iceberg/exceptions.py
 create mode 100644 python/src/iceberg/table/base.py
 create mode 100644 python/tests/catalog/__init__.py
 create mode 100644 python/tests/catalog/test_base.py