Commit 1ec815b 1 parent 023dc25 commit 1ec815b Copy full SHA for 1ec815b
File tree 1 file changed +3
-5
lines changed
rust/datafusion/src/datasource
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,17 @@ use std::string::String;
22
22
use std:: sync:: { Arc , Mutex } ;
23
23
24
24
use arrow:: array:: { Array , PrimitiveArray } ;
25
- use arrow:: builder:: PrimitiveBuilder ;
25
+ use arrow:: builder:: { BinaryBuilder , Int64Builder , PrimitiveBuilder } ;
26
26
use arrow:: datatypes:: * ;
27
27
use arrow:: record_batch:: RecordBatch ;
28
28
29
29
use parquet:: column:: reader:: * ;
30
- use parquet:: data_type:: ByteArray ;
30
+ use parquet:: data_type:: { ByteArray , Int96 } ;
31
31
use parquet:: file:: reader:: * ;
32
+ use parquet:: reader:: schema:: parquet_to_arrow_schema;
32
33
33
34
use crate :: datasource:: { RecordBatchIterator , ScanResult , Table } ;
34
35
use crate :: execution:: error:: { ExecutionError , Result } ;
35
- use arrow:: builder:: { BinaryBuilder , Int64Builder } ;
36
- use parquet:: data_type:: Int96 ;
37
- use parquet:: reader:: schema:: parquet_to_arrow_schema;
38
36
39
37
pub struct ParquetTable {
40
38
filename : String ,
You can’t perform that action at this time.
0 commit comments