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
7 changes: 7 additions & 0 deletions crates/iceberg/public-api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,7 @@ pub type iceberg::expr::BoundTerm = iceberg::expr::BoundReference
pub type iceberg::expr::Term = iceberg::expr::Reference
pub mod iceberg::inspect
pub enum iceberg::inspect::MetadataTableType
pub iceberg::inspect::MetadataTableType::History
pub iceberg::inspect::MetadataTableType::Manifests
pub iceberg::inspect::MetadataTableType::Snapshots
impl iceberg::inspect::MetadataTableType
Expand All @@ -636,13 +637,19 @@ pub fn iceberg::inspect::MetadataTableType::fmt(&self, f: &mut core::fmt::Format
impl strum::IntoEnumIterator for iceberg::inspect::MetadataTableType
pub type iceberg::inspect::MetadataTableType::Iterator = iceberg::inspect::MetadataTableTypeIter
pub fn iceberg::inspect::MetadataTableType::iter() -> iceberg::inspect::MetadataTableTypeIter
pub struct iceberg::inspect::HistoryTable<'a>
impl<'a> iceberg::inspect::HistoryTable<'a>
pub fn iceberg::inspect::HistoryTable<'a>::new(table: &'a iceberg::table::Table) -> Self
pub async fn iceberg::inspect::HistoryTable<'a>::scan(&self) -> iceberg::Result<iceberg::scan::ArrowRecordBatchStream>
pub fn iceberg::inspect::HistoryTable<'a>::schema(&self) -> iceberg::spec::Schema
pub struct iceberg::inspect::ManifestsTable<'a>
impl<'a> iceberg::inspect::ManifestsTable<'a>
pub fn iceberg::inspect::ManifestsTable<'a>::new(table: &'a iceberg::table::Table) -> Self
pub async fn iceberg::inspect::ManifestsTable<'a>::scan(&self) -> iceberg::Result<iceberg::scan::ArrowRecordBatchStream>
pub fn iceberg::inspect::ManifestsTable<'a>::schema(&self) -> iceberg::spec::Schema
pub struct iceberg::inspect::MetadataTable<'a>(_)
impl<'a> iceberg::inspect::MetadataTable<'a>
pub fn iceberg::inspect::MetadataTable<'a>::history(&self) -> iceberg::inspect::HistoryTable<'_>
pub fn iceberg::inspect::MetadataTable<'a>::manifests(&self) -> iceberg::inspect::ManifestsTable<'_>
pub fn iceberg::inspect::MetadataTable<'a>::new(table: &'a iceberg::table::Table) -> Self
pub fn iceberg::inspect::MetadataTable<'a>::snapshots(&self) -> iceberg::inspect::SnapshotsTable<'_>
Expand Down
Loading
Loading