You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "eligbr (via GitHub)" <gi...@apache.org> on 2023/05/06 10:55:29 UTC

[GitHub] [arrow] eligbr opened a new issue, #35466: Unable to propagate status error after upgrading arrow version

eligbr opened a new issue, #35466:
URL: https://github.com/apache/arrow/issues/35466

   ### Describe the usage question you have. Please include as many useful details as  possible.
   
   
   Hi,
   
   I am trying to upgrade c++ arrow version in my project from 6 to 12.
   All went fine except that I am not able to propagate arrow status from arrow flight server to arrow flight client as before.
   For example `DoAction` call which fails with `REError` returns status ok.
   Would appreciate any help.
   
   Thanks 
   
   ### Component(s)
   
   C++, FlightRPC


-- 
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: issues-unsubscribe@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] eligbr commented on issue #35466: Unable to propagate status error after upgrading arrow version

Posted by "eligbr (via GitHub)" <gi...@apache.org>.
eligbr commented on issue #35466:
URL: https://github.com/apache/arrow/issues/35466#issuecomment-1537127797

   Thank you!
   In this case I use the API in a very simple way I don't actually use the results stream this is why it was very convenient for me to check the returned status directly. 
   Is there a built in way to simulate the same behavior?
   
   Thanks


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] lidavidm commented on issue #35466: Unable to propagate status error after upgrading arrow version

Posted by "lidavidm (via GitHub)" <gi...@apache.org>.
lidavidm commented on issue #35466:
URL: https://github.com/apache/arrow/issues/35466#issuecomment-1537142661

   There's not a built in way, unfortunately.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [arrow] lidavidm commented on issue #35466: Unable to propagate status error after upgrading arrow version

Posted by "lidavidm (via GitHub)" <gi...@apache.org>.
lidavidm commented on issue #35466:
URL: https://github.com/apache/arrow/issues/35466#issuecomment-1537124944

   Most likely, you need to actually iterate though the full result of the returned stream. Prior to v11 or so DoAction would buffer the entire result set into memory immediately; in v11 it was changed to return a proper iterator.


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org