File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,13 @@ concurrency:
1616 cancel-in-progress : true
1717
1818jobs :
19+ build :
20+ runs-on : ubuntu-latest
21+ steps :
22+ - uses : actions/checkout@v4
23+ - uses : ./.github/actions/setup
24+ - run : cargo build
25+
1926 clippy :
2027 runs-on : ubuntu-latest
2128 steps :
Original file line number Diff line number Diff line change @@ -37,14 +37,14 @@ rand = "0.8.5"
3737object_store = " 0.12.3"
3838bytes = " 1.10.1"
3939pin-project = " 1.1.10"
40+ tokio-stream = " 0.1.17"
4041
4142# integration_tests deps
4243insta = { version = " 1.43.1" , features = [" filters" ], optional = true }
4344tpchgen = { git = " https://github.com/clflushopt/tpchgen-rs" , rev = " e83365a5a9101906eb9f78c5607b83bc59849acf" , optional = true }
4445tpchgen-arrow = { git = " https://github.com/clflushopt/tpchgen-rs" , rev = " e83365a5a9101906eb9f78c5607b83bc59849acf" , optional = true }
4546parquet = { version = " 57.0.0" , optional = true }
4647arrow = { version = " 57.0.0" , optional = true }
47- tokio-stream = { version = " 0.1.17" , optional = true }
4848hyper-util = { version = " 0.1.16" , optional = true }
4949pretty_assertions = { version = " 1.4" , optional = true }
5050
@@ -55,7 +55,6 @@ integration = [
5555 " tpchgen-arrow" ,
5656 " parquet" ,
5757 " arrow" ,
58- " tokio-stream" ,
5958 " hyper-util" ,
6059 " pretty_assertions" ,
6160]
Original file line number Diff line number Diff line change 1- use arrow:: array:: RecordBatch ;
1+ use datafusion :: arrow:: array:: RecordBatch ;
22use datafusion:: common:: runtime:: SpawnedTask ;
33use datafusion:: common:: { DataFusionError , plan_err} ;
44use datafusion:: execution:: memory_pool:: { MemoryConsumer , MemoryPool } ;
You can’t perform that action at this time.
0 commit comments