Skip to content

Commit c47f19b

Browse files
committed
fix test for rw modify
1 parent 2c73c4b commit c47f19b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/integration_tests/tests/shared_tests/merge_append_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ async fn test_append_data_file() {
121121
for _ in 0..3 {
122122
let data_file = write_new_data_file(&table).await;
123123
let tx = Transaction::new(&table);
124-
let mut append_action = tx.fast_append(None, vec![]).unwrap();
124+
let mut append_action = tx.fast_append(None, None, vec![]).unwrap();
125125
append_action.add_data_files(data_file.clone()).unwrap();
126126
let tx = append_action.apply().await.unwrap();
127127
table = tx.commit(&rest_catalog).await.unwrap()

0 commit comments

Comments
 (0)