File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -202,20 +202,20 @@ class ARROW_ACERO_EXPORT RecordBatchReaderSourceNodeOptions : public ExecNodeOpt
202202 // / Create an instance from values
203203 RecordBatchReaderSourceNodeOptions (std::shared_ptr<RecordBatchReader> reader,
204204 arrow::internal::Executor* io_executor = NULLPTR,
205- bool implicit_ordering=false )
206- : reader(std::move(reader)), io_executor(io_executor),implicit_ordering(implicit_ordering) {}
205+ bool implicit_ordering = false )
206+ : reader(std::move(reader)),
207+ io_executor (io_executor),
208+ implicit_ordering(implicit_ordering) {}
207209
208210 // / \brief The RecordBatchReader which acts as the data source
209211 std::shared_ptr<RecordBatchReader> reader;
210212
211-
212213 // / \brief The executor to use for the reader
213214 // /
214215 // / Defaults to the default I/O executor.
215216 arrow::internal::Executor* io_executor;
216217
217-
218- bool implicit_ordering{false };
218+ bool implicit_ordering{false };
219219};
220220
221221// / a source node that reads from an iterator of array vectors
Original file line number Diff line number Diff line change @@ -416,7 +416,8 @@ struct RecordBatchReaderSourceNode : public SourceNode {
416416 const auto & cast_options =
417417 checked_cast<const RecordBatchReaderSourceNodeOptions&>(options);
418418 auto & reader = cast_options.reader ;
419- Ordering ordering = cast_options.implicit_ordering ?Ordering::Implicit ():Ordering::Unordered ();
419+ Ordering ordering =
420+ cast_options.implicit_ordering ? Ordering::Implicit () : Ordering::Unordered ();
420421 auto io_executor = cast_options.io_executor ;
421422
422423 if (reader == nullptr ) {
You can’t perform that action at this time.
0 commit comments