We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dbdf6b commit 11bd4c8Copy full SHA for 11bd4c8
crates/iceberg/src/transaction/append.rs
@@ -109,7 +109,10 @@ impl FastAppendAction {
109
#[async_trait]
110
impl TransactionAction for FastAppendAction {
111
async fn commit(self: Arc<Self>, table: &Table) -> Result<ActionCommit> {
112
- let tag_ref = self.tag_name.as_ref().map(|name| (name.clone(), self.tag_retention));
+ let tag_ref = self
113
+ .tag_name
114
+ .as_ref()
115
+ .map(|name| (name.clone(), self.tag_retention));
116
117
let snapshot_producer = SnapshotProducer::new(
118
table,
0 commit comments