-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Python] Incorrect return type for FlightStreamReader.read_chunk() #34017
Comments
Hi, I would like to contribute to this. I'm new to open source so if you could please guide me on what is to be done and what are the pre-requisites for the same, it will be of great help. |
Signed-off-by: Julien Jerphanion <[email protected]>
…s docstring (#35583) ### Rationale for this change Addresses #34017. ### What changes are included in this PR? Simple docstring fixes. ### Are these changes tested? No (must they be test?) ### Are there any user-facing changes? Yes. Authored-by: Julien Jerphanion <[email protected]> Signed-off-by: David Li <[email protected]>
Issue resolved by pull request 35583 |
…chunk's docstring (apache#35583) ### Rationale for this change Addresses apache#34017. ### What changes are included in this PR? Simple docstring fixes. ### Are these changes tested? No (must they be test?) ### Are there any user-facing changes? Yes. Authored-by: Julien Jerphanion <[email protected]> Signed-off-by: David Li <[email protected]>
…chunk's docstring (apache#35583) ### Rationale for this change Addresses apache#34017. ### What changes are included in this PR? Simple docstring fixes. ### Are these changes tested? No (must they be test?) ### Are there any user-facing changes? Yes. Authored-by: Julien Jerphanion <[email protected]> Signed-off-by: David Li <[email protected]>
@lidavidm @jjerphan FYI the docs for Shall I go ahead an open a PR for this? |
@nph: feel free to open a PR, yes! |
…ghtStreamReader and MetadataRecordBatchReader (#38641) ### Rationale for this change The docs for `FlightStreamReader` and `MetadataRecordBatchReader` currently list an incorrect return type for the `read_chunk` method - see #34017. NB: this issue was partially addressed by #35583. ### What changes are included in this PR? Simple docstring update for `read_chunk`. ### Are these changes tested? No (v minor docstring only change) ### Are there any user-facing changes? Yes * Closes: #34017 Authored-by: Nick Hughes <[email protected]> Signed-off-by: David Li <[email protected]>
…or FlightStreamReader and MetadataRecordBatchReader (apache#38641) ### Rationale for this change The docs for `FlightStreamReader` and `MetadataRecordBatchReader` currently list an incorrect return type for the `read_chunk` method - see apache#34017. NB: this issue was partially addressed by apache#35583. ### What changes are included in this PR? Simple docstring update for `read_chunk`. ### Are these changes tested? No (v minor docstring only change) ### Are there any user-facing changes? Yes * Closes: apache#34017 Authored-by: Nick Hughes <[email protected]> Signed-off-by: David Li <[email protected]>
…or FlightStreamReader and MetadataRecordBatchReader (apache#38641) ### Rationale for this change The docs for `FlightStreamReader` and `MetadataRecordBatchReader` currently list an incorrect return type for the `read_chunk` method - see apache#34017. NB: this issue was partially addressed by apache#35583. ### What changes are included in this PR? Simple docstring update for `read_chunk`. ### Are these changes tested? No (v minor docstring only change) ### Are there any user-facing changes? Yes * Closes: apache#34017 Authored-by: Nick Hughes <[email protected]> Signed-off-by: David Li <[email protected]>
Describe the bug, including details regarding any error messages, version, and platform.
The documentation for using the FlightStreamReader to read_chunk currently states that this method returns a RecordBatch. The return type is actually FlightStreamChunk, which then contains an attribute called data that is of type RecordBatch.
When trying to click "Edit this Page", I get a 404 error: https://github.com/apache/arrow/edit/master/docs/source/python/generated/pyarrow.flight.FlightStreamReader.rst
Component(s)
Documentation, Python
The text was updated successfully, but these errors were encountered: