[ 
https://issues.apache.org/jira/browse/ARROW-1996?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16377587#comment-16377587
 ] 

ASF GitHub Bot commented on ARROW-1996:
---------------------------------------

cpcloud commented on a change in pull request #1667: ARROW-1996: [Python] Fix 
repeated deserialization from a stream
URL: https://github.com/apache/arrow/pull/1667#discussion_r170738113
 
 

 ##########
 File path: python/pyarrow/tests/test_serialization.py
 ##########
 @@ -650,3 +650,16 @@ def loads2(serialized_obj):
     serialized = pa.serialize(test_object, context=context).to_buffer()
     deserialized = pa.deserialize(serialized.to_pybytes(), context=context)
     assert deserialized == b'custom serialization 2'
+
+
+def test_repeated_serialization():
+    # ARROW-1996
+    for u, v in zip(PRIMITIVE_OBJECTS, PRIMITIVE_OBJECTS[1:]):
 
 Review comment:
   Fair enough :)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> [Python] pyarrow.read_serialized cannot read concatenated records
> -----------------------------------------------------------------
>
>                 Key: ARROW-1996
>                 URL: https://issues.apache.org/jira/browse/ARROW-1996
>             Project: Apache Arrow
>          Issue Type: Bug
>          Components: Python
>    Affects Versions: 0.8.0
>         Environment: Linux
>            Reporter: Richard Shin
>            Assignee: Antoine Pitrou
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 0.9.0
>
>
> The following code
> {quote}import pyarrow as pa
> f = pa.OSFile('arrow_test', 'w')
>  pa.serialize_to(12, f)
>  pa.serialize_to(23, f)
>  f.close()
> f = pa.OSFile('arrow_test', 'r')
>  print(pa.read_serialized(f).deserialize())
>  print(pa.read_serialized(f).deserialize())
>  f.close()
> {quote}
> gives the following result:
> {quote}$ python pyarrow_test.py
>  First: 12
>  Traceback (most recent call last):
>  File "pyarrow_test.py", line 10, in <module>
>  print('Second: {}'.format(pa.read_serialized(f).deserialize()))
>  File "pyarrow/serialization.pxi", line 347, in pyarrow.lib.read_serialized 
> (/arrow/python/build/temp.linux-x86_64-2.7/lib.cxx:79159)
>  File "pyarrow/error.pxi", line 77, in pyarrow.lib.check_status 
> (/arrow/python/build/temp.linux-x86_64-2.7/lib.cxx:8270)
>  pyarrow.lib.ArrowInvalid: Expected schema message in stream, was null or 
> length 0
> {quote}
> I would have expected read_serialized to sucessfully read the second value.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to