Skip to content

Commit

Permalink
Improve ScanNodeOptions docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jan 29, 2025
1 parent b381181 commit a3c8ff0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cpp/src/arrow/dataset/scanner.h
Original file line number Diff line number Diff line change
Expand Up @@ -557,8 +557,12 @@ class ARROW_DS_EXPORT ScannerBuilder {
/// \brief Construct a source ExecNode which yields batches from a dataset scan.
///
/// Does not construct associated filter or project nodes.
/// Yielded batches will be augmented with fragment/batch indices to enable stable
/// ordering for simple ExecPlans.
///
/// Batches are yielded sequentially, like single-threaded,
/// when require_sequenced_output=true.
///
/// Yielded batches will be augmented with fragment/batch indices when
/// implicit_ordering=true to enable stable ordering for simple ExecPlans.
class ARROW_DS_EXPORT ScanNodeOptions : public acero::ExecNodeOptions {
public:
explicit ScanNodeOptions(std::shared_ptr<Dataset> dataset,
Expand Down

0 comments on commit a3c8ff0

Please sign in to comment.