iceberg-python
iceberg-python copied to clipboard
Apache PyIceberg
### Feature Request / Improvement Make sure that the `and` expression can be serialized to JSON: https://github.com/apache/iceberg-python/blob/e5e74534a4938fcace2c782a237474b7e94da68c/pyiceberg/expressions/__init__.py#L250 This should follow: ```json { "type": "and", "left": BooleanExpression, "right": BooleanExpression } ```...
### Feature Request / Improvement Make sure that the `UnaryPredicate` predicate can be serialized to JSON: https://github.com/apache/iceberg-python/blob/e5e74534a4938fcace2c782a237474b7e94da68c/pyiceberg/expressions/__init__.py#L432-L443 This predicate has four implementations: `IsNull`, `NotNull`, `IsNaN`, and `NotNan`, and translates to:...