Skip to content

Commit

Permalink
remove printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
universalmind303 committed Feb 5, 2024
1 parent b1ce136 commit e0e789f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/datasources/src/lake/iceberg/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ impl TableState {
// TODO: Handle not finding a version hint.
let path = format_object_path(&location, "metadata/version-hint.text")?;
let path = ObjectPath::parse(path)?;
println!("path: {:?}", path);
let bs = store.get(&path).await?.bytes().await?;
let version_contents = String::from_utf8(bs.to_vec()).map_err(|e| {
IcebergError::DataInvalid(format!("Expected utf-8 in version hint: {}", e))
Expand Down

0 comments on commit e0e789f

Please sign in to comment.