-
Notifications
You must be signed in to change notification settings - Fork 14
add doc comment for execution stage struct #80
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
Conversation
gabotechs
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💯
NGA-TRAN
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are a few typos
src/stage/stage.rs
Outdated
| /// When an [`ExecutionStage`] is execute()'d if will execute its plan and return a stream | ||
| /// of record batches. | ||
| /// | ||
| /// If the stage has input stages, then it those input stages will be executed on remote resources |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| /// If the stage has input stages, then it those input stages will be executed on remote resources | |
| /// If the stage has input stages, those input stages will be executed on remote resources |
| /// If the stage has input stages, then it those input stages will be executed on remote resources | ||
| /// and will be provided the remainder of the stage tree. | ||
| /// | ||
| /// For example if our stage tree looks like this: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The sentence does not sound finish
src/stage/stage.rs
Outdated
| /// | ||
| /// The receiving ArrowFlightEndpoint will then execute Stage 2 and will repeat this process. | ||
| /// | ||
| /// When Stage 4 4 is executed, it has no input tasks, so it is assumed that the plan included in that |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| /// When Stage 4 4 is executed, it has no input tasks, so it is assumed that the plan included in that | |
| /// When Stage 4 is executed, it has no input tasks, so it is assumed that the plan included in that |
|
Thanks for these @NGA-TRAN ! I addressed. |
Re-add back doc comment for execution stage struct.