Fokko commented on code in PR #36846:
URL: https://github.com/apache/arrow/pull/36846#discussion_r1338209884


##########
python/pyarrow/tests/test_table.py:
##########
@@ -1330,6 +1330,22 @@ def test_concat_tables():
     assert result.equals(expected)
 
 
+def test_concat_tables_permissive():
+    t1 = pa.Table.from_arrays([list(range(10))], names=('a',))
+    t2 = pa.Table.from_arrays([list(range(10, 20))], names=('a',))
+
+    result = pa.concat_tables([t1, t2], field_merge_options="permissive")

Review Comment:
   Fair point, updated it to a rainy day situation



-- 
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]

Reply via email to