Skip to content

Commit 2e4e481

Browse files
committed
make change function in builder as pub(crate)
1 parent cae83cb commit 2e4e481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/iceberg/src/spec/table_metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ impl TableMetadataBuilder {
342342
}
343343

344344
/// Changes uuid of table metadata.
345-
pub fn assign_uuid(mut self, uuid: Uuid) -> Result<Self> {
345+
pub(crate) fn assign_uuid(mut self, uuid: Uuid) -> Result<Self> {
346346
self.0.table_uuid = uuid;
347347
Ok(self)
348348
}

0 commit comments

Comments
 (0)