(field)
| 985 | ) |
| 986 | |
| 987 | def check_one_way(field): |
| 988 | expr = pc.is_null(pc.field(field.name)) |
| 989 | buf = pa.substrait.serialize_expressions([expr], ["test_expr"], schema) |
| 990 | returned = pa.substrait.deserialize_expressions(buf) |
| 991 | assert alt_schema == returned.schema |
| 992 | |
| 993 | for field in schema: |
| 994 | check_one_way(field) |
no test coverage detected