This is an automated email from the ASF dual-hosted git repository.
houqp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new de3eb2a Remove unused `use` statements from examples (#1032)
de3eb2a is described below
commit de3eb2ab47661cbf1a9dd1fc66d9898972bbb69b
Author: Andrew Lamb <[email protected]>
AuthorDate: Tue Sep 21 21:01:57 2021 -0400
Remove unused `use` statements from examples (#1032)
---
docs/source/user-guide/example-usage.md | 4 ----
1 file changed, 4 deletions(-)
diff --git a/docs/source/user-guide/example-usage.md
b/docs/source/user-guide/example-usage.md
index 4280079..c09e1e8 100644
--- a/docs/source/user-guide/example-usage.md
+++ b/docs/source/user-guide/example-usage.md
@@ -23,8 +23,6 @@ Run a SQL query against data stored in a CSV:
```rust
use datafusion::prelude::*;
-use arrow::util::pretty::print_batches;
-use arrow::record_batch::RecordBatch;
#[tokio::main]
async fn main() -> datafusion::error::Result<()> {
@@ -45,8 +43,6 @@ Use the DataFrame API to process data stored in a CSV:
```rust
use datafusion::prelude::*;
-use arrow::util::pretty::print_batches;
-use arrow::record_batch::RecordBatch;
#[tokio::main]
async fn main() -> datafusion::error::Result<()> {