Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/iceberg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ flate2 = { workspace = true }
fnv = { workspace = true }
futures = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
miniz_oxide = "0.8"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We manage dependencies version in root workspace.

moka = { version = "0.12.10", features = ["future"] }
murmur3 = { workspace = true }
num-bigint = { workspace = true }
Expand Down
7 changes: 5 additions & 2 deletions crates/iceberg/src/io/object_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,9 @@ mod tests {
use crate::TableIdent;
use crate::io::{FileIO, OutputFile};
use crate::spec::{
DataContentType, DataFileBuilder, DataFileFormat, Literal, ManifestEntry,
ManifestListWriter, ManifestStatus, ManifestWriterBuilder, Struct, TableMetadata,
CompressionSettings, DataContentType, DataFileBuilder, DataFileFormat, Literal,
ManifestEntry, ManifestListWriter, ManifestStatus, ManifestWriterBuilder, Struct,
TableMetadata,
};
use crate::table::Table;

Expand Down Expand Up @@ -275,6 +276,7 @@ mod tests {
None,
current_schema.clone(),
current_partition_spec.as_ref().clone(),
CompressionSettings::default(),
)
.build_v2_data();
writer
Expand Down Expand Up @@ -307,6 +309,7 @@ mod tests {
current_snapshot.snapshot_id(),
current_snapshot.parent_snapshot_id(),
current_snapshot.sequence_number(),
CompressionSettings::default(),
);
manifest_list_write
.add_manifests(vec![data_file_manifest].into_iter())
Expand Down
10 changes: 7 additions & 3 deletions crates/iceberg/src/scan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -577,9 +577,9 @@ pub mod tests {
use crate::io::{FileIO, OutputFile};
use crate::scan::FileScanTask;
use crate::spec::{
DataContentType, DataFileBuilder, DataFileFormat, Datum, Literal, ManifestEntry,
ManifestListWriter, ManifestStatus, ManifestWriterBuilder, NestedField, PartitionSpec,
PrimitiveType, Schema, Struct, StructType, TableMetadata, Type,
CompressionSettings, DataContentType, DataFileBuilder, DataFileFormat, Datum, Literal,
ManifestEntry, ManifestListWriter, ManifestStatus, ManifestWriterBuilder, NestedField,
PartitionSpec, PrimitiveType, Schema, Struct, StructType, TableMetadata, Type,
};
use crate::table::Table;

Expand Down Expand Up @@ -749,6 +749,7 @@ pub mod tests {
None,
current_schema.clone(),
current_partition_spec.as_ref().clone(),
CompressionSettings::default(),
)
.build_v2_data();
writer
Expand Down Expand Up @@ -826,6 +827,7 @@ pub mod tests {
current_snapshot.snapshot_id(),
current_snapshot.parent_snapshot_id(),
current_snapshot.sequence_number(),
CompressionSettings::default(),
);
manifest_list_write
.add_manifests(vec![data_file_manifest].into_iter())
Expand Down Expand Up @@ -961,6 +963,7 @@ pub mod tests {
None,
current_schema.clone(),
current_partition_spec.as_ref().clone(),
CompressionSettings::default(),
)
.build_v2_data();

Expand Down Expand Up @@ -1045,6 +1048,7 @@ pub mod tests {
current_snapshot.snapshot_id(),
current_snapshot.parent_snapshot_id(),
current_snapshot.sequence_number(),
CompressionSettings::default(),
);
manifest_list_write
.add_manifests(vec![data_file_manifest].into_iter())
Expand Down
Loading
Loading