Skip to content

Commit

Permalink
Clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Mar 14, 2019
1 parent 023dc25 commit 1ec815b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions rust/datafusion/src/datasource/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,17 @@ use std::string::String;
use std::sync::{Arc, Mutex};

use arrow::array::{Array, PrimitiveArray};
use arrow::builder::PrimitiveBuilder;
use arrow::builder::{BinaryBuilder, Int64Builder, PrimitiveBuilder};
use arrow::datatypes::*;
use arrow::record_batch::RecordBatch;

use parquet::column::reader::*;
use parquet::data_type::ByteArray;
use parquet::data_type::{ByteArray, Int96};
use parquet::file::reader::*;
use parquet::reader::schema::parquet_to_arrow_schema;

use crate::datasource::{RecordBatchIterator, ScanResult, Table};
use crate::execution::error::{ExecutionError, Result};
use arrow::builder::{BinaryBuilder, Int64Builder};
use parquet::data_type::Int96;
use parquet::reader::schema::parquet_to_arrow_schema;

pub struct ParquetTable {
filename: String,
Expand Down

0 comments on commit 1ec815b

Please sign in to comment.