From e594d9887d391a4ca5f0ba8b9c1c4811b32df8a6 Mon Sep 17 00:00:00 2001 From: Sergei Patiakin Date: Wed, 11 Dec 2024 17:29:35 +0100 Subject: [PATCH] Update iceberg-rust ref --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- tests/flight/inline_metastore.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 44d5dcdd..41453632 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3947,7 +3947,7 @@ dependencies = [ [[package]] name = "iceberg" version = "0.3.0" -source = "git+https://github.com/splitgraph/iceberg-rust?rev=6e87893e733379558df597aa7d66f026549e3b0c#6e87893e733379558df597aa7d66f026549e3b0c" +source = "git+https://github.com/splitgraph/iceberg-rust?rev=734e70dbe6227de7ce621474c38278da1b450f1a#734e70dbe6227de7ce621474c38278da1b450f1a" dependencies = [ "anyhow", "apache-avro", @@ -3993,7 +3993,7 @@ dependencies = [ [[package]] name = "iceberg-datafusion" version = "0.3.0" -source = "git+https://github.com/splitgraph/iceberg-rust?rev=6e87893e733379558df597aa7d66f026549e3b0c#6e87893e733379558df597aa7d66f026549e3b0c" +source = "git+https://github.com/splitgraph/iceberg-rust?rev=734e70dbe6227de7ce621474c38278da1b450f1a#734e70dbe6227de7ce621474c38278da1b450f1a" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index bde8c727..b400d63c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,8 +21,8 @@ datafusion-functions-nested = "43.0.0" futures = "0.3" -iceberg = { git = "https://github.com/splitgraph/iceberg-rust", rev = "6e87893e733379558df597aa7d66f026549e3b0c" } -iceberg-datafusion = { git = "https://github.com/splitgraph/iceberg-rust", rev = "6e87893e733379558df597aa7d66f026549e3b0c" } +iceberg = { git = "https://github.com/splitgraph/iceberg-rust", rev = "734e70dbe6227de7ce621474c38278da1b450f1a" } +iceberg-datafusion = { git = "https://github.com/splitgraph/iceberg-rust", rev = "734e70dbe6227de7ce621474c38278da1b450f1a" } itertools = ">=0.10.0" object_store = { version = "0.11", features = ["aws", "azure", "gcp"] } diff --git a/tests/flight/inline_metastore.rs b/tests/flight/inline_metastore.rs index eaa35d86..cdb10352 100644 --- a/tests/flight/inline_metastore.rs +++ b/tests/flight/inline_metastore.rs @@ -60,7 +60,7 @@ async fn test_inline_query( async fn test_inline_iceberg_write() { let (_context, mut client) = flight_server(TestServerType::InlineOnly).await; - // Verify the v1 dataset is as expected + // GIVEN we start with an Iceberg table at v1 let batches = get_flight_batches_inlined( &mut client, "SELECT * FROM s3.iceberg_hdfs_v1 ORDER BY key".to_string(),