alamb commented on issue #769:
URL: 
https://github.com/apache/arrow-datafusion/issues/769#issuecomment-885650360


   ```
   arrow = { version = "4.4.0", features = ["prettyprint", "default"] }
   ```
   
   Yes, this is the version of arrow that the (released) datafusion version 4.0 
works with. 👍 
   
   The fact that we haven't released a new version of datafusion to crates.io 
that works with arrow 5 is a problem which we should rectify. 
   
   DataFusion (at least on master) also includes a "public export" of its arrow 
dependency, so perhaps we should change the example from
   
   ```rust
   use arrow::record_batch::RecordBatch;
   use arrow::util::pretty::print_batches;
   ```
   
   to 
   
   ```rust
   use datafusion::arrow::record_batch::RecordBatch;
   use datafusion::arrow::util::pretty::print_batches;
   ```
   
   > Many thanks for reading thus far, it looks like a fantastic product you 
have been building!
   
   Thanks! Kudos go to the whole team (there are many people whose work goes 
into making it)
   


-- 
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