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/03/30 20:32:57 UTC

[iceberg] branch master updated (9b36109 -> 2bef8f1)

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 9b36109  Aliyun: Add metrics tracking for OSSFileIO (#4393)
     add 2bef8f1  Python: Add literals (#4262)

No new revisions were added by this update.

Summary of changes:
 python/setup.cfg                                   |   2 +
 .../src/iceberg/expression}/__init__.py            |   0
 python/src/iceberg/expression/literals.py          | 493 +++++++++++++++
 python/src/iceberg/types.py                        |  10 +
 python/tests/expression/__init__.py                |  11 +
 python/tests/expression/test_literals.py           | 667 +++++++++++++++++++++
 python/tox.ini                                     |   5 +-
 7 files changed, 1186 insertions(+), 2 deletions(-)
 copy {python_legacy/tests/parquet => python/src/iceberg/expression}/__init__.py (100%)
 create mode 100644 python/src/iceberg/expression/literals.py
 create mode 100644 python/tests/expression/__init__.py
 create mode 100644 python/tests/expression/test_literals.py