Skip to content

Commit 7d7ac44

Browse files
committed
Try optimize
Signed-off-by: Xuanwo <[email protected]>
1 parent 1a67d4d commit 7d7ac44

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -307,10 +307,10 @@ http = "1"
307307
humantime = "2.1.0"
308308
hyper = "1"
309309
hyper-util = { version = "0.1.9", features = ["client", "client-legacy", "tokio", "service"] }
310-
iceberg = { version = "0.3.0", git = "https://github.com/Xuanwo/iceberg-rust/", rev = "2076f80" }
311-
iceberg-catalog-glue = { version = "0.3.0", git = "https://github.com/Xuanwo/iceberg-rust/", rev = "2076f80" }
312-
iceberg-catalog-hms = { version = "0.3.0", git = "https://github.com/Xuanwo/iceberg-rust/", rev = "2076f80" }
313-
iceberg-catalog-rest = { version = "0.3.0", git = "https://github.com/Xuanwo/iceberg-rust/", rev = "2076f80" }
310+
iceberg = { version = "0.3.0", git = "https://github.com/Xuanwo/iceberg-rust/", rev = "01d706a1" }
311+
iceberg-catalog-glue = { version = "0.3.0", git = "https://github.com/Xuanwo/iceberg-rust/", rev = "01d706a1" }
312+
iceberg-catalog-hms = { version = "0.3.0", git = "https://github.com/Xuanwo/iceberg-rust/", rev = "01d706a1" }
313+
iceberg-catalog-rest = { version = "0.3.0", git = "https://github.com/Xuanwo/iceberg-rust/", rev = "01d706a1" }
314314
indexmap = "2.0.0"
315315
indicatif = "0.17.5"
316316
itertools = "0.13.0"

src/query/storages/iceberg/src/table_source.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ impl Processor for IcebergTableSource {
140140
// TODO: don't use stream here.
141141
let stream = reader
142142
.read(Box::pin(stream::iter([Ok(part.to_task())])))
143+
.await
143144
.map_err(|err| ErrorCode::Internal(format!("iceberg data stream read: {err:?}")))?;
144145
self.stream = Some(stream);
145146
} else {

0 commit comments

Comments
 (0)