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
2 changes: 0 additions & 2 deletions crates/catalog/glue/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,6 @@ impl Catalog for GlueCatalog {
/// representation and then attempts to update the corresponding namespace
/// in the Glue Catalog.
///
/// # Returns
/// Returns `Ok(())` if the namespace update is successful. If the
/// namespace cannot be updated due to missing information or an error
/// during the update process, an `Err(...)` is returned.
Expand Down Expand Up @@ -723,7 +722,6 @@ impl Catalog for GlueCatalog {
/// Glue-compatible table representation, and attempts to create the
/// corresponding table in the Glue Catalog.
///
/// # Returns
/// Returns `Ok(Table)` if the table is successfully registered and loaded.
/// If the registration fails due to validation issues, existing table conflicts,
/// metadata problems, or errors during the registration or loading process,
Expand Down
1 change: 0 additions & 1 deletion crates/catalog/hms/src/catalog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ impl Catalog for HmsCatalog {
/// representation and then attempts to update the corresponding namespace
/// in the Hive Metastore.
///
/// # Returns
/// Returns `Ok(())` if the namespace update is successful. If the
/// namespace cannot be updated due to missing information or an error
/// during the update process, an `Err(...)` is returned.
Expand Down
4 changes: 2 additions & 2 deletions crates/iceberg/src/spec/schema/_serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use crate::{Error, Result};

#[derive(Debug, Serialize, Deserialize, PartialEq, Eq)]
#[serde(untagged)]
/// Enum for Schema serialization/deserializaion
/// Enum for Schema serialization/deserialization
pub(super) enum SchemaEnum {
V2(SchemaV2),
V1(SchemaV1),
Expand Down Expand Up @@ -61,7 +61,7 @@ pub(crate) struct SchemaV1 {
pub fields: StructType,
}

/// Helper to serialize/deserializa Schema
/// Helper to serialize/deserialize Schema
impl TryFrom<SchemaEnum> for Schema {
type Error = Error;
fn try_from(value: SchemaEnum) -> Result<Self> {
Expand Down
Loading