Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ iceberg-catalog-rest = { version = "0.10.0", path = "./crates/catalog/rest" }
iceberg-catalog-s3tables = { version = "0.10.0", path = "./crates/catalog/s3tables" }
iceberg-catalog-sql = { version = "0.10.0", path = "./crates/catalog/sql" }
iceberg-datafusion = { version = "0.10.0", path = "./crates/integrations/datafusion" }
iceberg-property-macro = { version = "0.10.0", path = "./crates/property-macro" }
iceberg-storage-opendal = { version = "0.10.0", path = "./crates/storage/opendal" }
indicatif = "0.18"
itertools = "0.13"
Expand Down
1 change: 1 addition & 0 deletions crates/iceberg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ flate2 = { workspace = true }
fnv = { workspace = true }
form_urlencoded = { workspace = true }
futures = { workspace = true }
iceberg-property-macro = { workspace = true }
itertools = { workspace = true }
moka = { version = "0.12.10", features = ["future"] }
murmur3 = { workspace = true }
Expand Down
32 changes: 31 additions & 1 deletion crates/iceberg/public-api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2853,9 +2853,39 @@ pub const iceberg::spec::TableProperties::PROPERTY_WRITE_PARTITION_SUMMARY_LIMIT
pub const iceberg::spec::TableProperties::PROPERTY_WRITE_TARGET_FILE_SIZE_BYTES: &str
pub const iceberg::spec::TableProperties::PROPERTY_WRITE_TARGET_FILE_SIZE_BYTES_DEFAULT: usize
pub const iceberg::spec::TableProperties::RESERVED_PROPERTIES: [&str; 9]
impl iceberg::spec::TableProperties
pub fn iceberg::spec::TableProperties::cdc_enabled(&self) -> bool
pub fn iceberg::spec::TableProperties::cdc_max_chunk_size(&self) -> usize
pub fn iceberg::spec::TableProperties::cdc_min_chunk_size(&self) -> usize
pub fn iceberg::spec::TableProperties::cdc_norm_level(&self) -> i32
pub fn iceberg::spec::TableProperties::commit_max_retry_wait_ms(&self) -> u64
pub fn iceberg::spec::TableProperties::commit_min_retry_wait_ms(&self) -> u64
pub fn iceberg::spec::TableProperties::commit_num_retries(&self) -> usize
pub fn iceberg::spec::TableProperties::commit_total_retry_timeout_ms(&self) -> u64
pub fn iceberg::spec::TableProperties::encryption_data_key_length(&self) -> usize
pub fn iceberg::spec::TableProperties::encryption_key_id(&self) -> &core::option::Option<alloc::string::String>
pub fn iceberg::spec::TableProperties::from_properties(properties: &std::collections::hash::map::HashMap<alloc::string::String, alloc::string::String>) -> iceberg::Result<Self>
pub fn iceberg::spec::TableProperties::gc_enabled(&self) -> bool
pub fn iceberg::spec::TableProperties::max_ref_age_ms(&self) -> i64
pub fn iceberg::spec::TableProperties::max_snapshot_age_ms(&self) -> i64
pub fn iceberg::spec::TableProperties::metadata_compression_codec(&self) -> &iceberg::compression::CompressionCodec
pub fn iceberg::spec::TableProperties::min_snapshots_to_keep(&self) -> usize
pub fn iceberg::spec::TableProperties::parquet_compression_codec(&self) -> &iceberg::compression::CompressionCodec
pub fn iceberg::spec::TableProperties::parquet_dict_size_bytes(&self) -> usize
pub fn iceberg::spec::TableProperties::parquet_page_row_limit(&self) -> usize
pub fn iceberg::spec::TableProperties::parquet_page_size_bytes(&self) -> usize
pub fn iceberg::spec::TableProperties::parquet_row_group_size_bytes(&self) -> usize
pub fn iceberg::spec::TableProperties::write_data_location(&self) -> &core::option::Option<alloc::string::String>
pub fn iceberg::spec::TableProperties::write_datafusion_fanout_enabled(&self) -> bool
pub fn iceberg::spec::TableProperties::write_folder_storage_location(&self) -> &core::option::Option<alloc::string::String>
pub fn iceberg::spec::TableProperties::write_format_default(&self) -> &alloc::string::String
pub fn iceberg::spec::TableProperties::write_metadata_path(&self) -> &core::option::Option<alloc::string::String>
pub fn iceberg::spec::TableProperties::write_object_storage_location(&self) -> &core::option::Option<alloc::string::String>
pub fn iceberg::spec::TableProperties::write_object_storage_partitioned_paths(&self) -> bool
pub fn iceberg::spec::TableProperties::write_target_file_size_bytes(&self) -> usize
impl core::convert::TryFrom<&std::collections::hash::map::HashMap<alloc::string::String, alloc::string::String>> for iceberg::spec::TableProperties
pub type iceberg::spec::TableProperties::Error = iceberg::Error
pub fn iceberg::spec::TableProperties::try_from(props: &std::collections::hash::map::HashMap<alloc::string::String, alloc::string::String>) -> iceberg::Result<Self>
pub fn iceberg::spec::TableProperties::try_from(properties: &std::collections::hash::map::HashMap<alloc::string::String, alloc::string::String>) -> iceberg::Result<Self>
impl core::fmt::Debug for iceberg::spec::TableProperties
pub fn iceberg::spec::TableProperties::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
pub struct iceberg::spec::UnboundPartitionField
Expand Down
Loading
Loading