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 9362326 commit cd844abCopy full SHA for cd844ab
crates/iceberg/src/transaction/rewrite_files.rs
@@ -114,6 +114,12 @@ impl RewriteFilesAction {
114
}
115
116
117
+impl Default for RewriteFilesAction {
118
+ fn default() -> Self {
119
+ Self::new()
120
+ }
121
+}
122
+
123
#[async_trait]
124
impl TransactionAction for RewriteFilesAction {
125
async fn commit(self: Arc<Self>, table: &Table) -> Result<ActionCommit> {
crates/iceberg/src/transaction/snapshot.rs
@@ -85,6 +85,7 @@ pub(crate) struct SnapshotProducer<'a> {
85
86
87
impl<'a> SnapshotProducer<'a> {
88
+ #[allow(clippy::too_many_arguments)]
89
pub(crate) fn new(
90
table: &'a Table,
91
commit_uuid: Uuid,
0 commit comments