westonpace commented on code in PR #40696:
URL: https://github.com/apache/arrow/pull/40696#discussion_r1535664644
##########
python/pyarrow/tests/test_substrait.py:
##########
@@ -944,6 +944,31 @@ def test_serializing_expressions(expr):
assert "test_expr" in returned.expressions
+def test_arrow_specific_types():
+ schema = pa.schema(
+ [
+ pa.field("time_nanos", pa.time64("ns")),
+ pa.field("date_millis", pa.date64()),
+ pa.field("large_string", pa.large_string()),
+ pa.field("large_binary", pa.large_binary()),
Review Comment:
I created a new "one way" test for python and added these there (since they
don't round trip to the same type)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]