14 lines
761 B
Diff
14 lines
761 B
Diff
diff --git a/cpp/src/arrow/acero/source_node.cc b/cpp/src/arrow/acero/source_node.cc
|
|
index 0f5840676..cf68bfdcb 100644
|
|
--- a/cpp/src/arrow/acero/source_node.cc
|
|
+++ b/cpp/src/arrow/acero/source_node.cc
|
|
@@ -407,7 +407,7 @@ struct SchemaSourceNode : public SourceNode {
|
|
struct RecordBatchReaderSourceNode : public SourceNode {
|
|
RecordBatchReaderSourceNode(ExecPlan* plan, std::shared_ptr<Schema> schema,
|
|
arrow::AsyncGenerator<std::optional<ExecBatch>> generator)
|
|
- : SourceNode(plan, schema, generator) {}
|
|
+ : SourceNode(plan, schema, generator, Ordering::Implicit()) {}
|
|
|
|
static Result<ExecNode*> Make(ExecPlan* plan, std::vector<ExecNode*> inputs,
|
|
const ExecNodeOptions& options) {
|