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 2c73c4b commit c47f19bCopy full SHA for c47f19b
crates/integration_tests/tests/shared_tests/merge_append_test.rs
@@ -121,7 +121,7 @@ async fn test_append_data_file() {
121
for _ in 0..3 {
122
let data_file = write_new_data_file(&table).await;
123
let tx = Transaction::new(&table);
124
- let mut append_action = tx.fast_append(None, vec![]).unwrap();
+ let mut append_action = tx.fast_append(None, None, vec![]).unwrap();
125
append_action.add_data_files(data_file.clone()).unwrap();
126
let tx = append_action.apply().await.unwrap();
127
table = tx.commit(&rest_catalog).await.unwrap()
0 commit comments