MCPcopy Create free account
hub / github.com/apache/arrow / test_expression_serialization_arrow

Function test_expression_serialization_arrow

python/pyarrow/tests/test_compute.py:3787–3791  ·  view source on GitHub ↗
(pickle_module)

Source from the content-addressed store, hash-verified

3785
3786@pytest.mark.numpy
3787def test_expression_serialization_arrow(pickle_module):
3788 for expr in create_sample_expressions()["all"]:
3789 assert isinstance(expr, pc.Expression)
3790 restored = pickle_module.loads(pickle_module.dumps(expr))
3791 assert expr.equals(restored)
3792
3793
3794@pytest.mark.numpy

Callers

nothing calls this directly

Calls 4

loadsMethod · 0.80
dumpsMethod · 0.80
equalsMethod · 0.80

Tested by

no test coverage detected