egolearner opened a new issue, #47481:
URL: https://github.com/apache/arrow/issues/47481

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   ```cpp
       auto table = ProximaTable();
       auto reader = 
std::make_shared<arrow::TableBatchReader>(table.ValueOrDie());
       ac::Declaration plan = ac::Declaration::Sequence({
           {"record_batch_reader_source",
            ac::RecordBatchReaderSourceNodeOptions{reader}},
           {"fetch", ac::FetchNodeOptions{0, 4}},
       });
       return ExecutePlanAndCollectAsTableByBatchReader(std::move(plan));
   ```
   
   error message:
   ```
   Running Err:Invalid: Fetch node's input has no meaningful ordering and so 
limit/offset will be non-deterministic.  Please establish order in some way 
(e.g. by inserting an order_by node)%             
   ```
   
   
   ### Component(s)
   
   C++


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to