Skip to content

Commit 551ce82

Browse files
wojiaodoubaolijinglun
andauthored
fix: compile error in test_inline_transaction (#5206)
Fix compile error Co-authored-by: lijinglun <lijinglun@bytedance.com>
1 parent 96cfdf2 commit 551ce82

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

rust/lance/src/dataset.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8873,12 +8873,7 @@ mod tests {
88738873
}
88748874

88758875
fn make_tx(read_version: u64) -> Transaction {
8876-
Transaction::new(
8877-
read_version,
8878-
Operation::Append { fragments: vec![] },
8879-
None,
8880-
None,
8881-
)
8876+
Transaction::new(read_version, Operation::Append { fragments: vec![] }, None)
88828877
}
88838878

88848879
async fn delete_external_tx_file(ds: &Dataset) {
@@ -8939,7 +8934,6 @@ mod tests {
89398934
ds.load_indices().await.unwrap().as_ref().clone(),
89408935
&tx_file,
89418936
&ManifestWriteConfig::default(),
8942-
None,
89438937
)
89448938
.unwrap();
89458939
let location = write_manifest_file(

0 commit comments

Comments
 (0)