Skip to content

Commit 97a9809

Browse files
authored
Fix build (#249)
1 parent 94c5d77 commit 97a9809

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ concurrency:
1616
cancel-in-progress: true
1717

1818
jobs:
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:

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ rand = "0.8.5"
3737
object_store = "0.12.3"
3838
bytes = "1.10.1"
3939
pin-project = "1.1.10"
40+
tokio-stream = "0.1.17"
4041

4142
# integration_tests deps
4243
insta = { version = "1.43.1", features = ["filters"], optional = true }
4344
tpchgen = { git = "https://github.com/clflushopt/tpchgen-rs", rev = "e83365a5a9101906eb9f78c5607b83bc59849acf", optional = true }
4445
tpchgen-arrow = { git = "https://github.com/clflushopt/tpchgen-rs", rev = "e83365a5a9101906eb9f78c5607b83bc59849acf", optional = true }
4546
parquet = { version = "57.0.0", optional = true }
4647
arrow = { version = "57.0.0", optional = true }
47-
tokio-stream = { version = "0.1.17", optional = true }
4848
hyper-util = { version = "0.1.16", optional = true }
4949
pretty_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
]

src/execution_plans/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use arrow::array::RecordBatch;
1+
use datafusion::arrow::array::RecordBatch;
22
use datafusion::common::runtime::SpawnedTask;
33
use datafusion::common::{DataFusionError, plan_err};
44
use datafusion::execution::memory_pool::{MemoryConsumer, MemoryPool};

0 commit comments

Comments
 (0)