Skip to content

Commit 15eee3e

Browse files
author
Jan Kaul
committed
add test
1 parent 28f1cd9 commit 15eee3e

4 files changed

Lines changed: 449 additions & 2 deletions

File tree

Cargo.lock

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

iceberg-rust/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ uuid = { workspace = true }
3838

3939
[dev-dependencies]
4040
chrono = { workspace = true }
41+
iceberg-sql-catalog = { path = "../catalogs/iceberg-sql-catalog" }
4142

iceberg-rust/src/table/transaction/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ impl<'table> TableTransaction<'table> {
196196
/// # Examples
197197
/// ```
198198
/// use std::collections::HashMap;
199-
///
199+
///
200200
/// let mut files_to_overwrite = HashMap::new();
201201
/// files_to_overwrite.insert(
202202
/// "manifest-001.avro".to_string(),
203203
/// vec!["data-001.parquet".to_string(), "data-002.parquet".to_string()]
204204
/// );
205-
///
205+
///
206206
/// let transaction = table.new_transaction(None)
207207
/// .overwrite(new_data_files, files_to_overwrite)
208208
/// .commit()

0 commit comments

Comments
 (0)